:root {
    --hiw-bg: #f5f5f7;
    --hiw-surface: #ffffff;
    --hiw-text: #1d1d1f;
    --hiw-muted: #6e6e73;
    --hiw-border: rgba(0, 0, 0, 0.06);
    --hiw-accent: #0066cc;
    --hiw-radius: 14px;
    --hiw-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hiw-page {
    flex: 1;
    width: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: calc(58px + 2.5rem) 0 4rem;
}

.hiw-shell {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}

.hiw-hero {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hiw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hiw-muted);
    background: var(--hiw-surface);
    border: 1px solid var(--hiw-border);
    border-radius: 980px;
    padding: 8px 16px;
    margin-bottom: 20px;
    box-shadow: var(--hiw-shadow);
}

.hiw-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.hiw-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--hiw-text);
    margin: 0 0 14px;
}

.hiw-lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--hiw-muted);
    margin: 0 0 28px;
}

.hiw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hiw-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--hiw-text);
    background: var(--hiw-surface);
    border: 1px solid var(--hiw-border);
    border-radius: 980px;
    padding: 10px 16px;
    box-shadow: var(--hiw-shadow);
}

.hiw-pill svg {
    width: 16px;
    height: 16px;
    color: var(--hiw-accent);
    flex-shrink: 0;
}

.hiw-steps {
    display: grid;
    gap: 48px;
    margin-bottom: 64px;
}

.hiw-step {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .hiw-step {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .hiw-step--reverse .hiw-step-content {
        order: 2;
    }

    .hiw-step--reverse .hiw-step-visual {
        order: 1;
    }
}

.hiw-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hiw-text);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hiw-step-content h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hiw-text);
    margin: 0 0 12px;
}

.hiw-step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--hiw-muted);
    margin: 0 0 20px;
}

.hiw-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hiw-list li {
    position: relative;
    padding-right: 18px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--hiw-text);
}

.hiw-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hiw-accent);
}

.hiw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border-radius: 980px;
    background: var(--hiw-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hiw-btn:hover {
    background: #005bb5;
}

.hiw-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.hiw-btn:hover svg {
    transform: translateX(-3px);
}

.hiw-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

a.hiw-platform {
	text-decoration: none;
	color: inherit;
}

a.hiw-platform:hover {
	border-color: #0066cc;
	color: #0066cc;
}

.hiw-platform {
    text-align: center;
    background: #f8fafc;
    border: 1px solid var(--hiw-border);
    border-radius: 12px;
    padding: 14px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hiw-muted);
}

.hiw-platform i {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--hiw-accent);
}

.hiw-visual {
    background: var(--hiw-surface);
    border: 1px solid var(--hiw-border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hiw-visual-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--hiw-muted);
    margin-bottom: 14px;
}

.hiw-visual-label svg {
    width: 16px;
    height: 16px;
}

.hiw-mock-form {
    background: #f8fafc;
    border: 1px solid var(--hiw-border);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    gap: 12px;
}

.hiw-mock-line {
    height: 10px;
    background: #e2e8f0;
    border-radius: 4px;
}

.hiw-mock-line--sm { width: 35%; }
.hiw-mock-line--md { width: 55%; }

.hiw-mock-input {
    height: 40px;
    background: #fff;
    border: 1px solid var(--hiw-border);
    border-radius: 8px;
}

.hiw-mock-btn {
    height: 44px;
    background: var(--hiw-accent);
    border-radius: 980px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.hiw-visual-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--hiw-text);
    margin: 0 0 12px;
}

.hiw-mock-line + .hiw-mock-line {
    margin-top: 8px;
}

.hiw-mock-code {
    background: #1d1d1f;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.hiw-mock-code code {
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 11px;
    line-height: 1.5;
    color: #34d399;
    word-break: break-all;
}

.hiw-mock-copy {
    height: 40px;
    background: #f0f7ff;
    color: var(--hiw-accent);
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

.hiw-mock-site {
    background: #f8fafc;
    border: 1px solid var(--hiw-border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    min-height: 160px;
}

.hiw-mock-site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hiw-mock-site-header strong {
    font-size: 13px;
    color: var(--hiw-text);
}

.hiw-mock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #166534;
    background: #ecfdf3;
    border-radius: 980px;
    padding: 4px 10px;
}

.hiw-mock-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.hiw-mock-widget {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hiw-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 3px #ffffff,
        0 0 0 4px rgba(15, 23, 42, 0.08),
        0 6px 18px rgba(15, 23, 42, 0.18);
}

.hiw-mock-widget svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    display: block;
}

.hiw-features {
    margin-bottom: 48px;
}

.hiw-features-header {
    text-align: center;
    margin-bottom: 32px;
}

.hiw-features-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hiw-text);
    margin: 0 0 8px;
}

.hiw-features-header p {
    font-size: 16px;
    color: var(--hiw-muted);
    margin: 0;
}

.hiw-features-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .hiw-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hiw-feature-card {
    background: var(--hiw-surface);
    border: 1px solid var(--hiw-border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--hiw-shadow);
}

.hiw-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #f0f7ff;
    color: var(--hiw-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.hiw-feature-icon svg {
    width: 22px;
    height: 22px;
}

.hiw-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--hiw-text);
    margin: 0 0 16px;
}

.hiw-cta {
    text-align: center;
    background: var(--hiw-surface);
    border: 1px solid var(--hiw-border);
    border-radius: 20px;
    padding: 40px 28px;
    box-shadow: var(--hiw-shadow);
}

.hiw-cta h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hiw-text);
    margin: 0 0 10px;
}

.hiw-cta p {
    font-size: 16px;
    color: var(--hiw-muted);
    margin: 0 0 24px;
    line-height: 1.55;
}

.hiw-cta-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--hiw-muted);
}

@media (max-width: 899px) {
    .hiw-page {
        padding-top: calc(58px + 1.5rem);
    }

    .hiw-step-content {
        text-align: center;
    }

    .hiw-list {
        text-align: right;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hiw-btn {
        width: 100%;
        max-width: 280px;
    }
}
