/* ══════════════════════════════════════════════
   V-TAX — THANK YOU PAGE STYLES  v1.0.0
══════════════════════════════════════════════ */

/* ── Full-page layout ───────────────────────── */
.vtax-ty-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 60px) 24px 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,57,43,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 100%, rgba(13,33,55,0.04) 0%, transparent 55%),
        #F4F7FA;
}

/* ── Background rings (matching hero style) ── */
.vtax-ty-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: vtaxTyRingSpin 45s linear infinite;
}
.vtax-ty-ring--1 {
    width: 800px; height: 800px;
    border: 1px solid rgba(192,57,43,0.06);
    top: -280px; right: -200px;
}
.vtax-ty-ring--2 {
    width: 500px; height: 500px;
    border: 1px solid rgba(13,33,55,0.05);
    bottom: -160px; left: -140px;
    animation-direction: reverse;
    animation-duration: 32s;
}
.vtax-ty-ring--3 {
    width: 300px; height: 300px;
    border: 1px solid rgba(192,57,43,0.04);
    top: 40%; left: 8%;
    animation-duration: 60s;
}
@keyframes vtaxTyRingSpin { to { transform: rotate(360deg); } }

/* ── Main card ──────────────────────────────── */
.vtax-ty-main {
    position: relative;
    z-index: 2;
    max-width: 760px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ── Animated SVG checkmark ─────────────────── */
.vtax-ty-icon {
    margin-bottom: 36px;
    animation: vtaxTyIconPop .5s cubic-bezier(.34,1.56,.64,1) both;
    animation-delay: .1s;
}
@keyframes vtaxTyIconPop {
    from { opacity:0; transform:scale(.5) rotate(-15deg); }
    to   { opacity:1; transform:scale(1) rotate(0deg); }
}
.vtax-ty-circle-svg {
    width: 80px; height: 80px;
    overflow: visible;
}
.vtax-ty-circle-track { opacity: .4; }
.vtax-ty-circle-fill {
    animation: vtaxTyCircleDraw .7s ease forwards;
    animation-delay: .4s;
    transform-origin: center;
    transform: rotate(-90deg);
}
@keyframes vtaxTyCircleDraw {
    to { stroke-dashoffset: 0; }
}
.vtax-ty-check {
    animation: vtaxTyCheckDraw .4s ease forwards;
    animation-delay: 1s;
}
@keyframes vtaxTyCheckDraw {
    to { stroke-dashoffset: 0; }
}

/* ── Eyebrow ─────────────────────────────────── */
.vtax-ty-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--crimson);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: vtaxTyFadeUp .6s ease forwards;
    animation-delay: .9s;
}
.vtax-ty-eyebrow-line {
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--crimson);
    flex-shrink: 0;
}
@keyframes vtaxTyFadeUp {
    from { opacity:0; transform:translateY(18px); }
    to   { opacity:1; transform:none; }
}

/* ── Headline ────────────────────────────────── */
.vtax-ty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -2.5px;
    color: var(--navy);
    margin-bottom: 28px;
    opacity: 0;
    animation: vtaxTyFadeUp .7s ease forwards;
    animation-delay: 1.05s;
}
.vtax-ty-title-line { display: block; }
.vtax-ty-title-line--muted { color: var(--text-m); font-weight: 300; }
.vtax-ty-title-line--accent { color: var(--crimson); }

/* ── Message ─────────────────────────────────── */
.vtax-ty-message {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-m);
    max-width: 520px;
    font-weight: 300;
    margin-bottom: 52px;
    opacity: 0;
    animation: vtaxTyFadeUp .6s ease forwards;
    animation-delay: 1.2s;
}
.vtax-ty-message strong { color: var(--navy); font-weight: 600; }

/* ── What happens next steps ────────────────── */
.vtax-ty-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 52px;
    width: 100%;
    opacity: 0;
    animation: vtaxTyFadeUp .65s ease forwards;
    animation-delay: 1.35s;
}
.vtax-ty-step {
    flex: 1;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 24px 22px;
    text-align: left;
    transition: all .25s;
    position: relative;
}
.vtax-ty-step:hover {
    border-color: var(--crimson);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.vtax-ty-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--crimson);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity .25s;
}
.vtax-ty-step:hover::before { opacity: 1; }

.vtax-ty-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--crimson-t);
    line-height: 1;
    margin-bottom: 10px;
}
.vtax-ty-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.vtax-ty-step-desc {
    font-size: 12.5px;
    color: var(--text-m);
    line-height: 1.6;
}

.vtax-ty-step-arrow {
    font-size: 20px;
    color: var(--border);
    padding: 0 10px;
    margin-top: 36px;
    flex-shrink: 0;
    font-weight: 300;
}

/* ── Contact strip ───────────────────────────── */
.vtax-ty-contact-strip {
    background: var(--navy);
    border-radius: 8px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 36px;
    opacity: 0;
    animation: vtaxTyFadeUp .6s ease forwards;
    animation-delay: 1.5s;
}
.vtax-ty-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    white-space: nowrap;
}
.vtax-ty-contact-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.vtax-ty-contact-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.vtax-ty-contact-link svg {
    width: 15px; height: 15px;
    stroke: var(--crimson);
    flex-shrink: 0;
}
.vtax-ty-contact-link:hover { color: #fff; }
.vtax-ty-contact-divider {
    color: rgba(255,255,255,0.2);
    font-size: 18px;
    line-height: 1;
}

/* ── Return button ───────────────────────────── */
.vtax-ty-return {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-m);
    text-decoration: none;
    border: 1.5px solid var(--border);
    padding: 13px 28px;
    border-radius: var(--radius);
    transition: all .25s;
    margin-bottom: 48px;
    opacity: 0;
    animation: vtaxTyFadeUp .6s ease forwards;
    animation-delay: 1.6s;
}
.vtax-ty-return:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--surface);
}

/* ── Trust badges ────────────────────────────── */
.vtax-ty-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: vtaxTyFadeUp .6s ease forwards;
    animation-delay: 1.7s;
}
.vtax-ty-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-s);
    font-weight: 500;
}
.vtax-ty-trust-badge {
    background: var(--crimson);
    color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 1px;
}
.vtax-ty-trust-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .vtax-ty-page { padding: calc(var(--header-h) + 40px) 20px 60px; }
    .vtax-ty-title { letter-spacing: -1.5px; }
    .vtax-ty-steps { flex-direction: column; gap: 12px; }
    .vtax-ty-step-arrow { display: none; }
    .vtax-ty-contact-strip { padding: 20px; flex-direction: column; gap: 14px; text-align: center; }
    .vtax-ty-contact-links { flex-direction: column; gap: 12px; }
    .vtax-ty-contact-divider { display: none; }
    .vtax-ty-trust { gap: 10px; }
    .vtax-ty-trust-dot { display: none; }
}

@media (max-width: 480px) {
    .vtax-ty-title { font-size: clamp(44px, 12vw, 64px); }
    .vtax-ty-eyebrow { font-size: 9px; letter-spacing: 2.5px; }
    .vtax-ty-eyebrow-line { width: 24px; }
}
