
:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --line: #dbe3ef;
    --accent: #0b5fff;
    --accent-dark: #0847bf;
    --accent-soft: #e9f0ff;
    --success: #0f766e;
    --danger: #b42318;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --radius: 22px;
    --max: 1200px;
}
* { box-sizing: border-box; }

.ml-form-embedContent {
    display: none
}

#mlb2-39512994.ml-form-embedContainer .ml-form-embedWrapper > .ml-form-embedBody {
    padding: 0 !important;
}


a { color: inherit; }

.page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 20px 80px;
}

.intro {
    background: linear-gradient(135deg, #0f172a 0%, #1d3557 100%);
    color: #fff;
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.intro h1 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
}

.intro p {
    margin: 0;
    max-width: 800px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
}


.nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 0;
}

.nav a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 14px;
}

.variant {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
    color: var(--text);
    line-height: 1.5;
    
    margin-top: 26px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.variant-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.variant-header h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 3vw, 32px);
}

.variant-header p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

/*.tag {*/
/*    flex-shrink: 0;*/
/*    border: 1px solid var(--line);*/
/*    border-radius: 999px;*/
/*    padding: 10px 14px;*/
/*    background: #f8fafc;*/
/*    color: var(--muted);*/
/*    font-size: 13px;*/
/*    white-space: nowrap;*/
/*}*/

.btn,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 0 20px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    box-shadow: 0 10px 22px rgba(11,95,255,.18);
}

.btn:hover,
button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

input, select, textarea {
    width: 100%;
    border: 1px solid #cfd8e6;
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(11,95,255,.11);
}

label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.field + .field { margin-top: 16px; }

.hint {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.check-row {
    display: flex;
    gap: 10px;
    align-items: start;
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
}

.check-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.stat {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    background: #fff;
}

.stat strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}


/* Variant 5 */
.v5 {
    padding: 0;
    background: #fff;
}

.v5-top {
    padding: 56px 40px 26px;
    text-align: center;
    background:
    radial-gradient(circle at top center, rgba(11,95,255,.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border-bottom: 1px solid var(--line);
}

.v5-top h3 {
    margin: 0 auto 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    max-width: 850px;
}

.v5-top p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.v5-top p.nl-tagline {
    margin-block: 1rem;
}

.v5-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.v5-column {
    padding: 32px;
    border-right: 1px solid var(--line);
}

.v5-column:last-child { border-right: 0; }

.kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 10px;
}

.stack {
    display: grid;
    gap: 14px;
}

.stack .cardish {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    background: #fff;
}

.stack .cardish strong {
    display: block;
    margin-bottom: 6px;
}

footer {
    margin-top: 34px;
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1024px) {
.v1-wrap,
.v2-shell,
.v3-hero,
.v4-grid,
.v5-bottom {
    grid-template-columns: 1fr;
}

.v3-bullets,
.stats {
    grid-template-columns: 1fr;
}

.v5-column,
.v5-column:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
}

.v5-column:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
    .page { padding: 16px 12px 60px; }
    .intro, .variant-header, .v2, .v4, .v5-top { padding: 20px; }
    .v1-copy, .v1-form, .v2-left, .v2-right, .v3-copy, .v3-side, .v4-copy, .v4-form, .v5-column { padding: 22px; }
    .split { grid-template-columns: 1fr; }
    .variant-header { flex-direction: column; }
}

div.preview-container {
    text-align: center;
    border-radius: 28px;
}

div.preview-container input[type="button"] {
    background-color: #103d5d !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    color: #ffffff !important;
    cursor: pointer;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 21px !important;
    height: auto;
    padding: 10px !important;
    width: 80% !important;
    box-sizing: border-box !important;
}

div.preview-container iframe {
    width: 100%;
    height: 800px;
    border: 0;
}

