*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    background-color: #f4f6fb;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #2f2f2f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --bg-start: #f4f6fb;
    --bg-end: #e8edf5;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --card: #ffffff;
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --maxw: 480px;
}

.wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
}
.card {
    width: 100%;
    max-width: var(--maxw);
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: visible;
}

.photo {
    width: 100%;
    aspect-ratio: 16/8;
    border-radius: 8px;
    margin-bottom: 18px;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.eyebrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    text-align: center;
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(22px, 5vw, 30px);
    line-height: 1.3;
    text-align: center;
    color: #1e1e1e;
    font-weight: 700;
}

.intro-block {
    background: #f9fbff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    color: #333;
    font-size: 16px;
    text-align: left;
}
.intro-block p {
    margin: 0;
}
.intro-block p + p {
    margin-top: 8px;
}

.billing {
    text-align: center;
    color: #1d4ed8;
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 18px;
}

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 12px 0;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 16px 22px;
    border-radius: 6px;
    font-size: 17px;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 5px 10px rgba(37, 99, 235, 0.25);
    transition:
        background 0.2s,
        transform 0.1s;
    text-decoration: none;
}
.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(0);
}
.micro {
    color: #6b6b6b;
    font-size: 13px;
}

.note {
    margin-top: 20px;
    padding: 12px 14px;
    font-size: 13px;
    color: #444;
    background: #f0f4ff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
}

.footer {
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 12px;
    color: #8b8b8b;
}
.footer__inner {
    margin-bottom: 10px;
}
.footer__inner a {
    padding: 5px;
    color: #777 !important;
    text-decoration: none;
    display: inline;
    background: transparent !important;
    font-weight: 400;
    border-radius: 0;
    font-size: initial;
    width: auto;
    max-width: auto;
    box-shadow: initial;
}
