/* Smartiq PhoneManager - v0.3.0 */

:root {
    --navy: #0b1f33;
    --navy-2: #12304d;
    --blue: #1477c9;
    --blue-2: #1a8be0;
    --cyan: #35b7d3;
    --mint: #38b783;
    --red: #d85151;
    --orange: #e69b36;
    --ink: #172535;
    --muted: #6e7c8d;
    --line: #dde5ec;
    --surface: #ffffff;
    --surface-2: #f4f7fa;
    --surface-3: #eef3f7;
    --shadow: 0 18px 55px rgba(28, 48, 68, .09);
    --radius: 20px;
}

* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--surface-2); }
body { margin: 0; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; background: #eef3f7; border-radius: 6px; padding: 2px 5px; }
.sr-only { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.brand-mark { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: white; font-weight: 900; background: linear-gradient(145deg, var(--blue), var(--cyan)); box-shadow: 0 7px 22px rgba(20,119,201,.25); }
.brand-product { margin-left: 7px; padding-left: 15px; border-left: 1px solid var(--line); font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .1px; }
.brand-light { color: white; }

.login-page { background: #f2f6f9; }
.login-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(410px, 45%) 1fr; }
.login-brand-panel { position: relative; overflow: hidden; padding: 54px 62px; color: white; display: flex; flex-direction: column; background: radial-gradient(circle at 82% 18%, rgba(53,183,211,.38), transparent 30%), radial-gradient(circle at 5% 92%, rgba(20,119,201,.28), transparent 28%), linear-gradient(145deg, #07192a 0%, #0c2b47 58%, #0e4d72 100%); }
.login-brand-panel::before { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -140px; bottom: -120px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.hero-copy { position: relative; max-width: 580px; margin: auto 0; z-index: 1; }
.hero-copy h1 { font-size: clamp(40px, 4.3vw, 68px); line-height: 1.02; letter-spacing: -2.4px; margin: 12px 0 22px; }
.hero-copy p { max-width: 535px; line-height: 1.7; color: rgba(255,255,255,.74); font-size: 17px; }
.hero-features { display:grid; gap:11px; margin-top:30px; }
.hero-features div { display:flex; gap:10px; align-items:center; color:rgba(255,255,255,.84); font-size:13px; }
.hero-features span { width:22px; height:22px; display:grid; place-items:center; border-radius:50%; background:rgba(53,183,211,.17); color:#8de4f6; }
.brand-footer { position: relative; z-index: 1; font-size: 13px; color: rgba(255,255,255,.48); }
.login-form-panel { display: grid; place-items: center; padding: 48px; }
.login-card { width: min(450px, 100%); background: white; border-radius: 26px; padding: 44px; box-shadow: var(--shadow); border: 1px solid rgba(213,224,233,.7); }
.login-card h2, .login-card h1 { font-size: 34px; letter-spacing: -1px; margin: 7px 0 8px; }
.mobile-brand { display: none; gap: 9px; align-items: center; margin-bottom: 34px; font-size: 21px; }
.setup-brand { display:flex; }

.eyebrow { text-transform: uppercase; letter-spacing: 1.8px; font-size: 11px; font-weight: 800; color: rgba(255,255,255,.62); }
.eyebrow.accent { color: var(--blue); }
.muted { color: var(--muted); }
.small-copy { font-size:12px; line-height:1.55; }
.stack-md > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 20px; }
.field { display: block; }
.field > span { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: #334456; }
.field input, .field select, .inline-field input { width: 100%; border: 1px solid #d7e0e8; background: #fbfcfd; border-radius: 12px; padding: 13px 14px; outline: none; color: var(--ink); transition: .2s ease; }
.field input:focus, .field select:focus, .inline-field input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,119,201,.09); background: white; }
.field small.field-help { display:block; margin-top:6px; color:var(--muted); font-size:11px; }
.field-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.btn { border: 0; border-radius: 12px; padding: 12px 17px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 8px 24px rgba(20,119,201,.2); }
.btn-primary:hover { box-shadow: 0 11px 28px rgba(20,119,201,.28); }
.btn-secondary { color:#365066; background:#edf3f7; border:1px solid #dce5ec; }
.btn-secondary:hover { background:#e6eef4; }
.btn-block { width: 100%; }
.secure-note { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 27px; font-size: 12px; color: var(--muted); }
.secure-dot { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px rgba(56,183,131,.12); }

.topbar { height: 74px; background: rgba(255,255,255,.94); backdrop-filter: blur(15px); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(22px, 4vw, 64px); position: sticky; top: 0; z-index: 50; }
.top-actions { display: flex; align-items: center; gap: 14px; }
.top-link { color: var(--muted); font-size: 13px; font-weight: 700; }
.top-link:hover, .top-link.active { color: var(--blue); }
.user-pill { display: flex; align-items: center; gap: 9px; border-left: 1px solid var(--line); padding-left: 16px; font-size: 13px; font-weight: 700; }
.avatar { width: 32px; height: 32px; border-radius: 10px; background: #e8f2fa; color: var(--blue); display:grid; place-items:center; }
.icon-button { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; background: #f2f5f8; color: var(--muted); }

.page-wrap { width: min(1240px, calc(100% - 40px)); margin: 44px auto 70px; }
.narrow-wrap { width: min(720px, calc(100% - 40px)); margin: 40px auto 70px; }
.page-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 25px; margin-bottom: 28px; }
.page-heading h1 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -1.5px; margin: 5px 0 8px; }
.page-heading p { margin: 0; }
.status-badge { display: flex; gap: 9px; align-items: center; padding: 10px 13px; border: 1px solid #d7e8df; background: #f3fbf7; color: #398163; border-radius: 999px; font-size: 12px; font-weight: 700; white-space:nowrap; }
.status-badge span { width: 8px; height: 8px; border-radius:50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(56,183,131,.12); }
.status-badge.status-neutral { color:#6e7c8d; background:#f2f5f8; border-color:#dce4ea; }
.status-badge.status-neutral span { background:#95a3af; box-shadow:none; }

.alert { padding: 14px 16px; border-radius: 13px; margin: 0 0 20px; font-size: 14px; font-weight: 650; line-height:1.5; }
.alert-success { color:#2d7558; background:#edf9f3; border:1px solid #d6efe2; }
.alert-error { color:#9e4141; background:#fff1f1; border:1px solid #f1d4d4; }
.alert-warning { color:#8d6228; background:#fff7e8; border:1px solid #f1dfba; }
.info-strip { display:flex; align-items:flex-start; gap:14px; padding:16px 18px; margin-bottom:22px; background:#eef6fc; border:1px solid #d7e9f5; border-radius:15px; color:#35566f; }
.info-strip-icon { flex:0 0 30px; width:30px; height:30px; display:grid; place-items:center; border-radius:9px; background:#fff; color:var(--blue); font-weight:900; }
.info-strip strong, .info-strip span { display:block; }
.info-strip strong { font-size:13px; margin:1px 0 4px; }
.info-strip span { color:#60798d; font-size:12px; line-height:1.5; }

.number-grid { display: grid; gap: 24px; }
.phone-card { overflow:hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 36px rgba(32,55,73,.06); transition:border-color .2s, box-shadow .2s; }
.phone-card.forward-active { border-color: #f0d7ab; box-shadow: 0 13px 36px rgba(180,128,46,.08); }
.phone-card-head { padding: 25px 28px; display:flex; align-items:center; justify-content:space-between; gap:18px; border-bottom:1px solid var(--line); background: linear-gradient(180deg,#fff,#fbfcfd); }
.card-label { color:var(--muted); text-transform:uppercase; letter-spacing:1px; font-size:10px; font-weight:800; }
.phone-card h2 { margin:5px 0 0; font-size:26px; letter-spacing:-.7px; }
.card-head-badges { display:flex; align-items:center; gap:9px; flex-wrap:wrap; justify-content:flex-end; }
.route-state { display:flex; align-items:center; gap:8px; padding:9px 12px; border-radius:999px; background:#f3faf7; color:#3c8065; font-size:12px; font-weight:800; }
.forward-active .route-state { background:#fff6e8; color:#9a6722; }
.route-dot { width:7px; height:7px; border-radius:50%; background:var(--mint); }
.forward-active .route-dot { background:var(--orange); }
.sync-chip { padding:8px 10px; border-radius:999px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.25px; }
.sync-local { background:#f1f4f7; color:#70808e; }
.sync-synced { background:#eaf8f1; color:#307b5c; }
.sync-pending { background:#fff5df; color:#9b6b2c; }
.sync-error { background:#fff0f0; color:#a44747; }
.settings-form { padding: 5px 28px 25px; }
.setting-row { display:grid; grid-template-columns: 43px minmax(200px,1fr) minmax(230px,340px); gap:16px; align-items:center; padding:20px 0; border-bottom:1px solid #edf1f4; }
.setting-icon { width:40px; height:40px; border-radius:12px; display:grid; place-items:center; background:#edf5fb; color:var(--blue); font-weight:900; }
.danger-icon { color:var(--red); background:#fff0f0; }
.setting-copy strong { display:block; font-size:14px; margin-bottom:4px; }
.setting-copy span { display:block; color:var(--muted); font-size:12px; line-height:1.45; }
.inline-field { width:100%; }
.switch { position:relative; width:54px; height:30px; justify-self:end; }
.switch input { opacity:0; width:0; height:0; }
.slider { position:absolute; inset:0; border-radius:999px; background:#cad4dd; transition:.2s; }
.slider::before { content:""; position:absolute; width:24px; height:24px; left:3px; top:3px; border-radius:50%; background:white; box-shadow:0 2px 8px rgba(0,0,0,.2); transition:.2s; }
.switch input:checked + .slider { background:linear-gradient(135deg,var(--blue),var(--cyan)); }
.switch input:checked + .slider::before { transform:translateX(24px); }
.routing-preview { margin:22px 0 4px; padding:18px; border-radius:15px; background:#f7fafc; display:flex; align-items:center; justify-content:center; gap:25px; border:1px dashed #d9e3eb; }
.route-node { min-width:140px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:5px; text-align:center; }
.route-node > span { min-width:58px; height:36px; padding:0 10px; border-radius:10px; display:grid; place-items:center; background:white; border:1px solid #dce5ec; font-weight:900; color:var(--blue); }
.route-node small { color:var(--muted); font-size:11px; }
.route-line { color:#a5b3bf; font-size:22px; }
.card-actions { display:flex; justify-content:space-between; align-items:center; padding-top:22px; }
.save-hint { color:var(--muted); font-size:11px; }
.sync-message { margin-top:16px; padding:13px 14px; background:#fff8e9; border:1px solid #f0dfb8; border-radius:12px; color:#80602e; }
.sync-message-error { background:#fff1f1; border-color:#efd2d2; color:#944949; }
.sync-message strong, .sync-message span { display:block; }
.sync-message strong { font-size:12px; margin-bottom:3px; }
.sync-message span { font-size:11px; line-height:1.5; }
.empty-state { text-align:center; padding:70px 25px; background:white; border:1px solid var(--line); border-radius:var(--radius); }
.empty-icon { width:60px; height:60px; margin:0 auto 15px; display:grid; place-items:center; background:#edf5fb; border-radius:18px; color:var(--blue); font-size:25px; }

.admin-kpis { display:flex; gap:10px; flex-wrap:wrap; }
.admin-kpis > div { padding:12px 18px; min-width:95px; background:white; border:1px solid var(--line); border-radius:14px; text-align:center; }
.admin-kpis strong { display:block; font-size:21px; }
.admin-kpis span { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.7px; font-weight:800; }
.admin-kpis .kpi-warning { border-color:#efdba9; background:#fffaf0; }
.admin-kpis .kpi-warning strong { color:#9a6722; }
.provider-banner { display:flex; align-items:center; gap:14px; padding:16px 18px; margin-bottom:22px; border-radius:16px; border:1px solid #dce5ec; background:#f8fafc; }
.provider-api { background:#eff8f4; border-color:#d5eadf; }
.provider-icon { width:42px; height:42px; flex:0 0 42px; border-radius:13px; display:grid; place-items:center; color:#fff; font-weight:900; background:linear-gradient(145deg,var(--navy-2),var(--blue)); }
.provider-copy { flex:1; min-width:0; }
.provider-copy strong, .provider-copy span { display:block; }
.provider-copy strong { font-size:13px; }
.provider-copy span { margin-top:3px; color:var(--muted); font-size:11px; line-height:1.45; }
.admin-grid { display:grid; grid-template-columns: 1fr 1.25fr; gap:22px; }
.panel { background:white; border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 10px 35px rgba(32,55,73,.05); overflow:hidden; }
.panel-head { min-height:78px; padding:19px 22px; display:flex; justify-content:space-between; align-items:center; gap:15px; border-bottom:1px solid var(--line); }
.panel-head h2 { margin:3px 0 0; font-size:21px; }
.table-wrap { overflow:auto; }
table { width:100%; border-collapse:collapse; }
th { color:#8593a1; font-size:10px; text-transform:uppercase; letter-spacing:.7px; font-weight:800; background:#fbfcfd; }
th,td { padding:14px 17px; border-bottom:1px solid #edf1f4; text-align:left; vertical-align:middle; }
td { font-size:13px; }
td strong,td small { display:block; }
td small { color:var(--muted); margin-top:3px; }
.empty-cell { color:var(--muted); text-align:center; padding:30px; }
.text-right { text-align:right; }
.role-chip,.status-chip { display:inline-flex; padding:6px 9px; border-radius:999px; background:#f0f4f7; color:#5e6d7b; font-size:10px; font-weight:800; text-transform:uppercase; }
.status-chip.good { color:#32805f; background:#ebf8f2; }
.status-chip.warn { color:#9a6722; background:#fff4df; }
.status-chip.off { color:#8a949e; background:#f1f3f5; }
.status-chip.sync-table-pending { color:#9a6722; background:#fff4df; }
.status-chip.sync-table-error { color:#a44747; background:#fff0f0; }
.status-chip.sync-table-synced { color:#32805f; background:#ebf8f2; }
.status-chip.sync-table-local { color:#6f7c88; background:#f1f4f7; }
.inline-note { font-size:9px; color:#9a6722; margin-top:5px; }
.text-link { color:var(--blue); font-weight:800; font-size:12px; }
.audit-panel { margin-top:22px; }
.audit-list { padding:8px 22px 18px; }
.audit-item { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid #edf1f4; font-size:12px; }
.audit-item:last-child { border-bottom:0; }
.audit-item small { display:block; color:var(--muted); margin-top:3px; }
.audit-bullet { margin-top:5px; width:8px; height:8px; border-radius:50%; background:var(--cyan); flex:0 0 auto; }

.modal { position:fixed; inset:0; z-index:100; display:none; place-items:center; padding:22px; }
.modal.open { display:grid; }
.modal-backdrop { position:absolute; inset:0; background:rgba(6,20,33,.55); backdrop-filter:blur(5px); }
.modal-card { position:relative; z-index:1; width:min(500px,100%); background:white; border-radius:22px; padding:30px; box-shadow:0 30px 80px rgba(0,0,0,.25); max-height:calc(100vh - 44px); overflow:auto; }
.modal-card h2 { margin:6px 0 22px; }
.modal-close { position:absolute; right:17px; top:14px; border:0; background:#f1f4f6; width:34px; height:34px; border-radius:10px; font-size:22px; color:#6c7986; }
.modal-open { overflow:hidden; }
.edit-panel { margin-top:18px; padding:30px; }
.edit-panel h1 { margin:6px 0 25px; }
.edit-heading-row { display:flex; justify-content:space-between; align-items:flex-start; gap:15px; }
.back-link { font-size:12px; color:var(--muted); font-weight:750; }
.check-line { display:flex; gap:9px; align-items:center; font-size:13px; font-weight:700; }
.check-card { display:flex; gap:12px; align-items:flex-start; padding:14px; border:1px solid #dce5ec; border-radius:13px; background:#f9fbfc; }
.check-card input { margin-top:3px; }
.check-card span { display:block; }
.check-card strong, .check-card small { display:block; }
.check-card strong { font-size:13px; }
.check-card small { margin-top:3px; color:var(--muted); line-height:1.4; }
.password-panel { margin-top:60px; }
.setup-wrap { min-height:100vh; display:grid; place-items:center; padding:35px; }
.app-footer { text-align:center; padding:20px; color:#94a0aa; font-size:11px; }

.diagnostic-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.diagnostic-body { padding:22px; }
.config-list { margin:0; }
.config-list > div { display:grid; grid-template-columns:130px 1fr; gap:15px; padding:10px 0; border-bottom:1px solid #edf1f4; }
.config-list > div:last-child { border-bottom:0; }
.config-list dt { color:var(--muted); font-size:11px; font-weight:700; }
.config-list dd { margin:0; font-size:12px; font-weight:700; overflow-wrap:anywhere; }
.soft-line { border:0; border-top:1px solid #edf1f4; margin:22px 0; }
.diagnostic-result { margin-top:22px; }
.result-panel { margin-top:22px; }
.json-view { padding:0; background:#0b1724; color:#d8e9f5; overflow:auto; max-height:550px; }
.json-view pre { margin:0; padding:22px; font:12px/1.6 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; white-space:pre-wrap; overflow-wrap:anywhere; }
.notice-card { margin-top:22px; padding:18px 20px; border-radius:15px; background:#fff9ed; border:1px solid #f0dfb8; color:#73562b; }
.notice-card strong { font-size:13px; }
.notice-card p { margin:5px 0 0; font-size:12px; line-height:1.6; }
.danger-text { color:var(--red); }

@media (max-width: 1000px) {
    .admin-grid, .diagnostic-grid { grid-template-columns:1fr; }
    .setting-row { grid-template-columns:43px 1fr; }
    .inline-field,.switch { grid-column:2; justify-self:stretch; }
    .switch { justify-self:start; }
}

@media (max-width: 930px) {
    .login-shell { grid-template-columns:1fr; }
    .login-brand-panel { display:none; }
    .mobile-brand { display:flex; }
    .login-form-panel { min-height:100vh; padding:25px; }
    .login-card { padding:32px; }
    .page-heading { align-items:flex-start; flex-direction:column; }
    .admin-kpis { width:100%; }
    .admin-kpis>div { flex:1; }
}

@media (max-width: 700px) {
    .provider-banner { align-items:flex-start; flex-wrap:wrap; }
    .provider-banner .btn { width:100%; }
    .field-grid { grid-template-columns:1fr; }
}

@media (max-width: 620px) {
    .topbar { padding:0 16px; }
    .brand-product,.top-link,.user-pill { display:none; }
    .page-wrap,.narrow-wrap { width:min(100% - 24px, 1240px); margin-top:26px; }
    .phone-card-head { padding:20px; align-items:flex-start; gap:12px; flex-direction:column; }
    .card-head-badges { justify-content:flex-start; }
    .settings-form { padding:5px 20px 20px; }
    .setting-row { grid-template-columns:38px 1fr; }
    .card-actions { flex-direction:column; align-items:stretch; gap:13px; }
    .save-hint { text-align:center; }
    .routing-preview { gap:8px; }
    .route-node { min-width:95px; }
    .page-heading h1 { font-size:34px; }
    .login-form-panel { padding:14px; }
    .login-card { padding:28px 22px; border-radius:20px; }
    .panel-head { gap:12px; }
    .panel-head .btn { padding:10px 12px; font-size:12px; }
    .config-list > div { grid-template-columns:1fr; gap:3px; }
    .edit-panel { padding:22px; }
}

/* PortaOne account lookup - v0.3.0 */
.portaone-linker {
    border: 1px solid #d7e5ef;
    border-radius: 15px;
    background: linear-gradient(180deg, #fafdff 0%, #f5f9fc 100%);
    padding: 16px;
}
.portaone-linker-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.portaone-linker-head small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
    margin-top: 3px;
}
.field-title {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
}
.portaone-linker-grid {
    display: grid;
    grid-template-columns: minmax(150px, 190px) 1fr;
    gap: 14px;
    align-items: stretch;
}
.compact-field {
    margin: 0;
}
.compact-field input[readonly] {
    background: #fff;
    color: #2d4b61;
    font-weight: 800;
}
.portaone-lookup-result {
    min-height: 70px;
    border-radius: 12px;
    border: 1px dashed #cbd9e3;
    background: #fff;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.portaone-lookup-result strong,
.portaone-lookup-result span {
    display: block;
}
.portaone-lookup-result strong {
    font-size: 12px;
    color: #375368;
}
.portaone-lookup-result span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.portaone-lookup-result.is-found {
    border-style: solid;
    border-color: #b9dfcf;
    background: #f0faf6;
}
.portaone-lookup-result.is-found strong {
    color: #2f7659;
}
.portaone-lookup-result.is-error {
    border-style: solid;
    border-color: #efc8c8;
    background: #fff5f5;
}
.portaone-lookup-result.is-error strong {
    color: #a44747;
}
.portaone-lookup-result.is-loading {
    border-style: solid;
    border-color: #bcd8ed;
    background: #f2f8fd;
}
.portaone-lookup-result.is-loading strong {
    color: var(--blue);
}
.btn-small {
    padding: 9px 12px;
    font-size: 11px;
    white-space: nowrap;
}
.portaone-mini {
    display: block;
    margin-top: 3px;
    color: #52778f;
    font-size: 9px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .portaone-linker-head,
    .portaone-linker-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .portaone-linker-head .btn {
        width: 100%;
    }
}
