/* ── FREE PAGE ── */

.free-hero {
    background: linear-gradient(160deg, #f0f9ff 0%, #eef2ff 50%, #fff 100%);
    padding: 80px 5% 0;
    text-align: center;
}

.free-hero__inner { max-width: 860px; margin: 0 auto; }

.free-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 999px;
    background: #e0f2fe; color: #0ea5e9;
    font-size: .8rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: 28px;
    border: 1px solid rgba(14,165,233,.2);
}

.free-hero__badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #0ea5e9;
    animation: pulse-dot 1.6s ease-in-out infinite; flex-shrink: 0;
}

.free-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.15;
    color: #0f172a; margin-bottom: 20px;
}

.free-hero h1 span {
    background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-hero p {
    font-size: 1.05rem; color: #64748b; max-width: 520px;
    margin: 0 auto 48px; line-height: 1.65;
}

/* ── TOOL PREVIEW ── */
.free-hero__tool { margin: 0 -5%; }

.free-tool {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 40px rgba(14,165,233,.08);
    overflow: hidden;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.free-tool__header {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.free-tool__dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.free-tool__dot--red    { background: #ff5f57; }
.free-tool__dot--yellow { background: #febc2e; }
.free-tool__dot--green  { background: #28c840; }

.free-tool__title {
    font-size: .8rem; color: #94a3b8; font-weight: 500;
    margin-left: 8px;
}

.free-tool__body {
    padding: 28px; display: flex; flex-direction: column; gap: 20px;
    position: relative; min-height: 220px;
}

.free-tool__field label {
    display: block; font-size: .8rem; font-weight: 600; color: #475569;
    margin-bottom: 8px;
}

.free-tool__input-wrap {
    display: flex; align-items: center; gap: 10px;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    padding: 10px 14px; background: #f8fafc;
}

.free-tool__input-wrap input {
    border: none; background: none; outline: none;
    font-size: .9rem; color: #94a3b8; width: 100%;
    font-family: inherit;
}

.free-tool__options {
    display: flex; gap: 8px; flex-wrap: wrap;
}

.free-tool__opt {
    padding: 8px 20px; border-radius: 8px; border: 1.5px solid #e2e8f0;
    font-size: .9rem; font-weight: 600; cursor: not-allowed;
    background: #fff; color: #64748b; font-family: inherit;
    transition: all .2s;
}

.free-tool__opt--active {
    background: #e0f2fe; border-color: #0ea5e9; color: #0ea5e9;
}

/* ── OVERLAY ── */
.free-tool__overlay {
    position: absolute; inset: 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    border-radius: 0 0 0 0;
}

.free-tool__overlay-inner { text-align: center; }

.free-tool__overlay-icon { font-size: 2.4rem; margin-bottom: 12px; }
.free-tool__overlay-title { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.free-tool__overlay-sub { font-size: .875rem; color: #64748b; margin-bottom: 20px; }

/* ── FREE STEPS ── */
.free-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    max-width: 860px; margin: 0 auto;
}

.free-step { text-align: center; padding: 0 16px; }

.free-step__num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff; font-size: 1.2rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(14,165,233,.3);
}

.free-step h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.free-step p  { font-size: .875rem; color: #64748b; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .free-hero { padding: 56px 5% 0; }
    .free-steps { grid-template-columns: 1fr; gap: 24px; max-width: 400px; }
    .free-tool__body { padding: 20px; }
    .free-tool__options { gap: 6px; }
    .free-tool__opt { padding: 7px 14px; font-size: .85rem; }
}
