:root {
    /* --primary: #1b2a4a; */
    --primary: #171e8a;
    /* Deep blue */
    /* --accent: #b88a2f; */
    --accent: #f46110;
    --accent-light: #f4611090;
    /* Gold */
    --bg: #f5f5f7;
    --text: #222222;
    --muted: #555555;
    --card-bg: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #e3e8ff 0, #f8fafc 40%, #ffffff 100%);
    color: var(--text);
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.container {
    max-width: 1000px;
    width: 100%;
    background: var(--card-bg);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
}

@media (max-width: 800px) {
    .container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-row img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-row .firm-name {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(1.9rem, 2.4vw + 1.2rem, 2.4rem);
    margin: 0 0 1rem;
    color: var(--primary);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-box {
    border-radius: 16px;
    border: 1px solid rgba(27, 42, 74, 0.08);
    /* background: linear-gradient(135deg, #fdfcf8 0, #f8fafc 100%); */
    background: linear-gradient(135deg, #fdfcf8 0, #f8fafc 100%);
    padding: 1rem 1.2rem;
    font-size: 0.94rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.highlight-box strong {
    color: var(--primary);
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.85rem;
}

.steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.96rem;
    color: var(--muted);
}

.step-badge {
    height: 24px;
    width: 24px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary), #447ee8);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.26);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    white-space: nowrap;
}

.btn-primary span {
    margin-left: 0.4rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.32);
    background: linear-gradient(135deg, #447ee8, #171e8a);
}

.cta-note {
    font-size: 0.87rem;
    color: var(--muted);
}

/* Right column / card */
.side-illustration {
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: auto
}
.side-illustration img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.side-card {
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(184, 138, 47, 0.14) 0, rgba(44, 66, 118, 0.9) 40%, #171e8a 100%);
    color: #e5e7eb;
    padding: 1.75rem 1.6rem;
    position: relative;
    overflow: hidden;
}

.side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 110% -10%, rgba(248, 250, 252, 0.18), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.side-content {
    position: relative;
    z-index: 1;
}

.side-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fff;
    margin-bottom: 1rem;
}

.side-text {
    font-size: 0.92rem;
    color: #cbd5f5;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.side-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: 0.65rem;
    font-size: 0.9rem;
}

.side-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}

.side-dot {
    margin-top: 0.3rem;
    height: 6px;
    width: 6px;
    border-radius: 999px;
    background: #facc15;
    flex-shrink: 0;
}

.disclaimer {
    font-size: 0.8rem;
    color: #cbd4e3;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .logo-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}