/* ============================================================
   TripMaster Landing — Design System
   Palette: --primary #1f6bff / --primary-dark #0F4C81
   Fonts: Cormorant Garamond (display) + Outfit (UI)
   ============================================================ */

:root {
    --primary:       #1f6bff;
    --primary-dark:  #0F4C81;
    --primary-light: #5090ff;
    --accent:        #FF9500;
    --text:          #1a2234;
    --text-muted:    #5a6a8a;
    --bg:            #f4f6fb;
    --bg-surface:    #ffffff;
    --bg-dark:       #0d1829;
    --border:        #dde3ef;
    --shadow-sm:     0 1px 3px rgba(15,76,129,.06), 0 1px 2px rgba(15,76,129,.04);
    --shadow-md:     0 4px 16px rgba(15,76,129,.10);
    --shadow-lg:     0 12px 40px rgba(15,76,129,.14);
    --radius:        10px;
    --font-display:  'Plus Jakarta Sans', system-ui, sans-serif;
    --font-ui:       'Plus Jakarta Sans', system-ui, sans-serif;

    /* legacy aliases kept for backward-compat with hero/feature/pricing */
    --primary-color: var(--primary);
    --text-color:    var(--text);
    --text-light:    var(--text-muted);
    --bg-light:      var(--bg);
    --bg-gradient:   linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* ── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar-landing {
    padding: 0;
    height: 64px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}

.navbar-landing.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 16px rgba(15,76,129,.08);
}

.navbar-brand-landing {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
    letter-spacing: -.01em;
}

.nav-link-landing {
    font-family: var(--font-ui);
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    padding: 8px 14px !important;
    letter-spacing: .01em;
    transition: color .2s;
}

.nav-link-landing:hover { color: var(--text) !important; }

.btn-nav-login {
    font-size: .85rem;
    font-weight: 500;
    color: var(--primary-dark);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 7px 18px;
    transition: border-color .2s, background .2s;
}

.btn-nav-login:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    background: rgba(15,76,129,.04);
}

.btn-nav-cta {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    padding: 7px 20px;
    transition: background .2s, box-shadow .2s;
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 14px rgba(31,107,255,.3);
}

/* ── CTA Buttons (hero / footer) ──────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    border: none;
    transition: background .2s, box-shadow .2s, transform .15s;
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(31,107,255,.28);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: .95rem;
    border: 1.5px solid rgba(255,255,255,.5);
    transition: border-color .2s, background .2s;
}

.btn-cta-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,.1);
    color: white;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero-section {
    background:
        radial-gradient(ellipse 80% 60% at 70% -10%, rgba(31,107,255,.32) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at -10% 110%, rgba(15,76,129,.45) 0%, transparent 60%),
        var(--bg-dark);
    padding: 120px 0 90px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/bg/sfondo_viaggi.jpg');
    background-position: center;
    background-size: cover;
    opacity: .12;
    z-index: 0;
}

.hero-section > .container { position: relative; z-index: 1; }

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: .88;
    margin-bottom: 32px;
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 80px 0; background: var(--bg); }
.section.bg-light { background: #edf0f7 !important; }

.section-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -.025em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* ── Feature Cards ────────────────────────────────────── */
.feature-card {
    background: var(--bg-surface);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, transform .25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.feature-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-text {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

/* ── Pricing ──────────────────────────────────────────── */
.pricing-card {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: 'Consigliato';
    position: absolute;
    top: 22px; right: -32px;
    background: var(--accent);
    color: white;
    padding: 4px 44px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -.03em;
}

.pricing-period { color: var(--text-muted); margin-bottom: 24px; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    text-align: left;
}

.pricing-features li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
}

.pricing-features li i { color: var(--primary); margin-right: 10px; }

/* ── Video ────────────────────────────────────────────── */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    padding: 90px 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 18px;
}

.btn-cta-white {
    background: white;
    color: var(--primary-dark);
    font-size: 1rem;
    padding: 14px 40px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background .2s, box-shadow .2s;
}

.btn-cta-white:hover {
    background: var(--bg);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* ── Footer ───────────────────────────────────────────── */
.footer-landing {
    background: var(--bg-dark);
    color: #8a9ab8;
    padding: 64px 0 28px;
}

.footer-landing a {
    color: #8a9ab8;
    text-decoration: none;
    transition: color .2s;
}

.footer-landing a:hover { color: white; }

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 14px;
}

.footer-links h5 {
    color: white;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; font-size: .88rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 22px;
    margin-top: 48px;
    font-size: .82rem;
}

/* ── Register Page — Split Layout ─────────────────────── */
.register-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 420px 1fr;
    padding-top: 64px; /* navbar */
}

/* Left — Brand Panel */
.reg-aside {
    background: var(--bg-dark);
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* subtle glow overlay */
.reg-aside::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 50% at 80% 10%, rgba(31,107,255,.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 55% at 10% 90%, rgba(15,76,129,.35) 0%, transparent 55%);
    pointer-events: none;
}

.reg-aside-inner {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex: 1;
}

.reg-aside-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-aside-brand img { height: 28px; width: auto; }

.reg-aside-brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    letter-spacing: -.01em;
}

.reg-aside-headline h2 {
    /* keep the elegant serif only on the dark panel — works well here */
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 600;
    font-style: normal;
    color: white;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 12px;
}

.reg-aside-headline p {
    font-size: .9rem;
    color: rgba(255,255,255,.62);
    line-height: 1.6;
    margin: 0;
}

/* Trial badge */
.reg-trial-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 18px 20px;
}

.reg-trial-days {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}

.reg-trial-text strong {
    display: block;
    color: white;
    font-weight: 600;
    font-size: .92rem;
    margin-bottom: 2px;
}

.reg-trial-text span {
    color: rgba(255,255,255,.55);
    font-size: .8rem;
}

/* Benefits list */
.reg-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reg-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.reg-benefits li:first-child { padding-top: 0; }
.reg-benefits li:last-child { border-bottom: none; }

.reg-benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    flex-shrink: 0;
    margin-top: 1px;
}

.reg-benefit-text strong {
    display: block;
    color: white;
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.reg-benefit-text span {
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    line-height: 1.4;
}

/* Reassurances */
.reg-reassurances {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
}

.reg-reassurances span {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    display: flex;
    align-items: center;
    gap: 7px;
}

.reg-reassurances span i { color: rgba(255,255,255,.6); font-size: .7rem; }

/* Right — Form Panel */
.reg-form {
    background: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 52px 40px;
    min-height: calc(100vh - 64px);
}

.reg-form-wrapper {
    width: 100%;
    max-width: 480px;
}

.reg-form-header {
    margin-bottom: 36px;
}

.reg-form-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -.025em;
    margin: 0 0 6px;
}

.reg-form-header p {
    font-size: .88rem;
    color: var(--text-muted);
    margin: 0;
}

.reg-form-header a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.reg-form-header a:hover { text-decoration: underline; }

/* Section labels inside form */
.reg-section-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin: 24px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Form elements */
.reg-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .01em;
    margin-bottom: 5px;
    display: block;
}

.reg-input {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: .9rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
}

.reg-input::placeholder { color: #b0bac9; }

.reg-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(31,107,255,.1);
}

.reg-input.is-invalid {
    border-color: #e74c4c;
    box-shadow: 0 0 0 3px rgba(231,76,76,.08);
}

/* Company type radio toggles */
.reg-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.reg-radio-label {
    position: relative;
    cursor: pointer;
}

.reg-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.reg-radio-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg);
    transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
    user-select: none;
}

.reg-radio-label input:checked + .reg-radio-btn {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(31,107,255,.05);
    box-shadow: 0 0 0 3px rgba(31,107,255,.08);
}

.reg-radio-btn:hover { border-color: #b8c8e0; }

/* Terms checkbox */
.reg-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.reg-terms input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.reg-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.reg-terms a:hover { text-decoration: underline; }

/* Submit button */
.reg-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 24px;
    font-family: var(--font-ui);
    font-size: .95rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: .01em;
    transition: background .2s, box-shadow .2s, transform .15s;
    margin-top: 24px;
}

.reg-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(31,107,255,.3);
    transform: translateY(-1px);
}

.reg-submit:active { transform: translateY(0); }

/* Validation */
.reg-error-msg {
    font-size: .78rem;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}

.reg-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: .85rem;
    color: #c0392b;
    margin-bottom: 24px;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
    .register-page {
        grid-template-columns: 1fr;
    }

    .reg-aside { display: none; }

    .reg-form {
        padding: 40px 24px;
        min-height: calc(100vh - 64px);
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { padding: 80px 0 60px; }
    .section { padding: 56px 0; }
    .cta-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
}

/* ── Register Success Page ────────────────────────────── */
.success-page {
    min-height: calc(100vh - 64px);
    padding-top: 64px;
    display: grid;
    grid-template-columns: 360px 1fr;
}

.success-aside {
    background: var(--bg-dark);
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    padding: 48px 40px;
    gap: 32px;
    overflow: hidden;
}

.success-aside::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 50% at 80% 10%, rgba(31,107,255,.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 55% at 10% 90%, rgba(15,76,129,.35) 0%, transparent 55%);
    pointer-events: none;
}

.success-aside-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

.success-aside-brand { display: flex; align-items: center; gap: 10px; }
.success-aside-brand img { height: 28px; }

.success-aside-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
}

.success-check-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.success-check-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: rgba(31,107,255,.25);
    animation: pop-in .5s cubic-bezier(.175,.885,.32,1.275) both;
}

@keyframes pop-in {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-aside h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.success-aside p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    margin: 0;
}

.success-trial-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 16px 20px;
}

.success-trial-days {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}

.success-trial-text strong { display: block; color: white; font-weight: 600; font-size: .88rem; }
.success-trial-text span   { color: rgba(255,255,255,.5); font-size: .78rem; }

.success-main {
    background: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 52px 40px;
    min-height: calc(100vh - 64px);
}

.success-content { width: 100%; max-width: 480px; }

.success-content-header { margin-bottom: 32px; }

.success-content-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
    margin: 0 0 6px;
}

.success-content-header p { font-size: .88rem; color: var(--text-muted); margin: 0; }

.success-email-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: .88rem;
    color: var(--text);
}

.success-email-box i { color: var(--primary); }

.success-features {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.success-features-header {
    background: var(--bg);
    padding: 12px 16px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.success-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    color: var(--text);
}

.success-feature-item:last-child { border-bottom: none; }
.success-feature-item i { color: var(--primary); font-size: .8rem; width: 16px; text-align: center; flex-shrink: 0; }

.success-steps { margin-bottom: 28px; }

.success-steps-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-steps-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.success-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.success-step:last-child { border-bottom: none; }

.success-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.success-step-text { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

.success-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 24px;
    font-size: .95rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .01em;
    transition: background .2s, box-shadow .2s, transform .15s;
}

.success-cta:hover {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 6px 24px rgba(31,107,255,.3);
    transform: translateY(-1px);
}

.success-note {
    margin-top: 20px;
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 991px) {
    .success-page { grid-template-columns: 1fr; }
    .success-aside { display: none; }
    .success-main { padding: 40px 24px; }
}
