/* ==========================================================================
   PD-Proxy — main stylesheet
   Based on the original pdproxy.css (v3). Legacy image-based chrome
   (shadows, separators, link bar, header) is reproduced with pure CSS so
   that every asset is served locally.
   ========================================================================== */

:root {
    --bg: #F0F0F0;
    --column: #DDDDDD;
    --panel: #e0e0e0;
    --white: #ffffff;
    --text: #444444;
    --text-dark: #000000;
    --muted: #888888;
    --link: #006699;
    --link-dark: #00326f;
    --accent: #006699;
    --accent-2: #39a3e6;
    --orange: #ec8526;
    --border: #cccccc;
    --border-dark: #999999;
    --ok: #508600;
    --err: #e3302c;
    --lucida: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    --helvetica: "HelveticaNeue-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --col-width: 766px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font: 12px Arial, Helvetica, sans-serif;
    background-color: var(--bg);
}
html { scroll-behavior: smooth; }
body { color: var(--text); overflow-x: hidden; }

a:link, a:active, a:visited { text-decoration: none; color: var(--link); }
a:hover { text-decoration: underline; }
img { border: 0; max-width: 100%; height: auto; }
fieldset { border: 0; margin: 0; padding: 0; }

.skip-link { position: absolute; left: -9999px; top: 0; background: #069; color: #fff !important; padding: 6px 10px; z-index: 1000; }
.skip-link:focus { left: 10px; }

/* ---------- Page column (was the 766px table with png shadows) ---------- */
.main_table {
    width: 100%;
    max-width: var(--col-width);
    margin: 0 auto;
    position: relative;
}
.td_content {
    background-color: var(--column);
    box-shadow: -4px 0 6px -3px rgba(0,0,0,.35), 4px 0 6px -3px rgba(0,0,0,.35);
    padding: 0 8px 0;
    position: relative;
}
.styleBottomRoundedRect {
    height: 22px;
    background: var(--column);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 5px 7px -3px rgba(0,0,0,.35), -4px 0 6px -3px rgba(0,0,0,.35), 4px 0 6px -3px rgba(0,0,0,.35);
    margin-bottom: 18px;
}

/* ---------- Header (was top_header.png) ---------- */
.header {
    position: relative;
    min-height: 98px;
    background: linear-gradient(#fefefe 0%, #eeeeee 55%, #d9d9d9 100%);
    border-bottom: 1px solid #bdbdbd;
    box-shadow: inset 0 -1px 0 #fff;
    margin: 0 -8px;
    padding: 0 8px;
}
.logo {
    position: absolute;
    left: 18px;
    top: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222 !important;
    text-decoration: none !important;
}
.logo-mark {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #5bb6e8 0%, #0a78b4 45%, #004f7a 100%);
    display: grid; place-items: center;
    color: #fff; font-size: 22px;
    box-shadow: 0 2px 4px rgba(0,0,0,.35), inset 0 2px 2px rgba(255,255,255,.45);
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.logo:hover .logo-mark { transform: rotate(360deg); }
.logo-text { line-height: 1; }
.logo-text strong {
    display: block;
    font: bold 30px/1 var(--helvetica);
    letter-spacing: -1.5px;
    color: #2b2b2b;
    text-shadow: 0 1px 0 #fff;
}
.logo-text strong span { color: #069; }
.logo-text small { font: 11px var(--helvetica); color: #777; letter-spacing: .5px; text-transform: uppercase; }

/* ---------- Top menu (original #top_header dropdown bar) ---------- */
#top_header {
    float: right;
    margin-right: 5px;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    position: relative;
    z-index: 50;
    background: white;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
#top_header ol, #top_header ul { list-style: none; margin: 0; padding: 0; }
#top_header > ul > li { position: relative; float: left; }
#top_header li:first-child, #top_header li:first-child > a { border-left: none; }
#top_header li a {
    display: block;
    padding: 5px 10px;
    font-size: 11px;
    border-left: 1px solid #E3E3E3;
    color: #7E7E7E;
    transition: background-color .2s, color .2s;
}
#top_header li a.active { color: #069; font-weight: bold; }
#top_header li:hover .boxButton, #top_header li.focused .boxButton, #top_header li .boxButtonHov {
    color: #fff;
    padding-bottom: 5px;
    background: #069 linear-gradient(#1a86bd, #006699);
}
.boxButton::after { content: "\25BE"; margin-left: 4px; font-size: 9px; }
#menu_header .signup { font-weight: bold; color: #303030; text-transform: capitalize; text-decoration: none; }
#menu_header .signup:hover { text-decoration: underline; }
#menu_header a:hover, #menu_header a:focus, #menu_header .boxHover a:hover { text-decoration: none; }

.boxHover {
    font-size: 12px;
    padding: 10px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 170px;
    background: white;
    border: 1px solid #CCC;
    border-top: 3px solid #069;
    z-index: 60;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, .2);
}
#menu_header li:hover .boxHover, #menu_header li.focused .boxHover, #menu_header li:focus-within .boxHover {
    visibility: visible; opacity: 1; transform: none;
}
#menu_header #top_header .boxHover ul li { float: none; }
#menu_header #top_header .boxHover a {
    border: none;
    padding: 4px 0;
    font-size: 11px;
    font-weight: bold;
    text-decoration: underline;
    color: #069;
    white-space: nowrap;
}
#menu_header #top_header .boxHover a:hover { color: #ec8526; }

.menu-toggle {
    display: none;
    position: absolute; right: 12px; top: 12px;
    width: 40px; height: 36px;
    background: #fff; border: 1px solid #ccc; border-radius: 4px;
    cursor: pointer; z-index: 70;
    color: #555; font-size: 18px;
}

/* ---------- IP box ---------- */
.ip_box, .ip_box2 {
    position: absolute;
    right: 14px;
    bottom: 12px;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 8px;
    font: bold 10px/12px 'Helvetica Neue', Helvetica, sans-serif;
    color: #444 !important;
    background: linear-gradient(white 0%, white 55%, #ffd9d9 130%);
    box-shadow: 0 0 6px rgba(0,0,0,.6);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important;
}
.ip_box2 { background: linear-gradient(white 0%, white 55%, #c9f7c9 130%); }
.ip_box .dot { width: 7px; height: 7px; border-radius: 50%; background: #e3302c; animation: blink 1.6s infinite; }
.ip_box2 .dot { background: #3cb043; }
@keyframes blink { 50% { opacity: .25; } }

/* ---------- Link bar (About / Download / Premium) ---------- */
.styleLinkBar {
    margin: 0 -8px;
    background: linear-gradient(#c8c8c8 0%, #e2e2e2 18%, #d4d4d4 100%);
    border-bottom: 1px solid #b4b4b4;
    padding: 8px 0 10px;
}
.styleLinkBarButtonsContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.linkbar-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    min-height: 96px;
    color: #333 !important;
    text-decoration: none !important;
    border-right: 1px solid #bdbdbd;
    box-shadow: inset -1px 0 0 #f3f3f3;
    position: relative;
    transition: background .25s;
}
.linkbar-btn:last-child { border-right: 0; box-shadow: none; }
.linkbar-btn i {
    flex: 0 0 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center; font-size: 22px; color: #fff;
    background: linear-gradient(#8a8a8a, #5c5c5c);
    box-shadow: 0 2px 3px rgba(0,0,0,.35), inset 0 1px 1px rgba(255,255,255,.5);
    transition: background .3s, transform .3s;
}
.linkbar-btn b { display: block; font: bold 20px/1.1 var(--helvetica); letter-spacing: -.5px; color: #333; }
.linkbar-btn span { font: 11px/1.35 var(--helvetica); color: #666; }
.linkbar-btn:hover, .linkbar-btn.enabled {
    background: linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.2));
}
.linkbar-btn:hover i, .linkbar-btn.enabled i { background: radial-gradient(circle at 35% 30%, #5bb6e8 0%, #0a78b4 50%, #004f7a 100%); }
.linkbar-btn:hover i { transform: scale(1.08) rotate(-6deg); }
.linkbar-btn.enabled::after {
    content: ""; position: absolute; left: 50%; bottom: -11px; margin-left: -9px;
    border: 9px solid transparent; border-bottom-color: var(--column); border-top: 0;
}

/* ---------- Separators (were separator_lines.png) ---------- */
.hr_div1, .hr_div2, .hr_blog {
    width: 100%;
    height: 2px;
    border-top: 1px solid #b9b9b9;
    border-bottom: 1px solid #f7f7f7;
    clear: both;
}
.hr_div1 { margin-top: 30px; }
.hr_div2 { border-top-color: #f7f7f7; border-bottom-color: #b9b9b9; }
.hr_blog { margin: 15px 0 30px; }

/* ---------- Text ---------- */
.styleDescriptionText { font-family: Arial, Sans-Serif; color: #444; line-height: 17px; }
.styleDescriptionText p, .styleDescriptionText li { line-height: 1.6; }
.styleSmallDescriptionText { font-family: Arial, Sans-Serif; font-size: 11px; color: #444; }
.styleLinkText { font-family: var(--helvetica); color: #00326f; }
.light { color: #777; font-size: 13px; }
.gray { color: #888; font-size: 11px; font-family: Verdana, sans-serif; padding-top: 1px; margin-top: 1px; }
.center { text-align: center; }

.contents { padding: 10px 20px 0; }
.contents h1, .contents h2, .contents h3 { font-family: var(--lucida); font-weight: normal; color: #222; }
.contents h1 { font-size: 1.9em; margin: 18px 0 10px; letter-spacing: -.5px; }
.contents h2 { font-size: 1.5em; margin: 22px 0 10px; }
.contents h3 { font-size: 1.2em; margin: 18px 0 8px; }
.contents_banner { padding: 30px 0 5px; }
.content_bar { padding: 10px 20px 0; text-align: left; }

.page-title {
    font-weight: normal;
    padding-bottom: 8px;
    border-bottom: 1px dashed #aaa;
    font-size: 1.9em !important;
    font-family: var(--lucida);
}
.lead { font-size: 14px; line-height: 1.6; color: #333; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font: 11px Verdana, sans-serif; color: #888; padding: 12px 20px 0; }
.breadcrumbs a { color: #069; }
.breadcrumbs span.sep { margin: 0 5px; color: #aaa; }

/* ---------- Boxes (original) ---------- */
.pressed, .blog_sidebar, .resellers_a {
    font-family: var(--lucida);
    color: #000;
    padding: 20px;
    background: var(--panel);
    border: 1px solid #ccc;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-radius: 5px;
}
.blog_sidebar { padding: 10px; }
.press_container, .resellers_b, .news {
    color: #000;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-radius: 5px;
}
.news { padding: 4px; font-size: 11px; }
.pressed_message {
    color: #000;
    padding: 16px 20px 12px;
    background: #FFFFCC;
    border: 1px solid #ccc;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-radius: 5px;
    line-height: 1.55;
}
.comment { font-family: var(--lucida); color: #000; padding: 10px; margin-bottom: 5px; background: #f0f0f0; border: 1px solid #ccc; border-right: 1px solid #999; border-bottom: 1px solid #999; border-radius: 5px; }
.t_header { padding-bottom: 10px; border-bottom: 1px dashed #999; font-size: 1.1em; font-weight: bold; font-family: var(--lucida); margin-top: 0; }
.coded { border: 1px solid #bbdbe0; background-color: #fff; padding: 10px; font-family: Consolas, Monaco, monospace; overflow-x: auto; }

/* messages (icons were gifs, now icon font) */
.message {
    position: relative;
    font-size: 12px;
    padding: 12px 15px 12px 42px;
    margin: 12px 0;
    font-weight: bold;
    border-radius: 3px;
    line-height: 1.5;
}
.message::before { font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 14px; top: 11px; font-size: 16px; }
.message.errormsg { border: 1px solid #e9c59b; background: #ffecce; color: #e3302c; }
.message.errormsg::before { content: "\f071"; }
.message.success { border: 1px solid #bfde84; background: #edfbd8; color: #508600; }
.message.success::before { content: "\f058"; }
.message.info { border: 1px solid #bbdbe0; background: #ecf9ff; color: #0888c3; }
.message.info::before { content: "\f05a"; }
.message.warning { border: 1px solid #e5e181; background: #fefde2; color: #666; }
.message.warning::before { content: "\f06a"; color: #c9a800; }
.message p { margin: 0; font-weight: normal; }

/* ---------- Buttons (original .button) ---------- */
.button {
    border: 1px solid #DEDEDE;
    border-radius: 3px;
    color: #555555;
    display: inline-block;
    font: bold 10px/12px 'Helvetica Neue', Helvetica, sans-serif;
    padding: 6px 11px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: box-shadow .2s, transform .15s;
}
.button:hover { box-shadow: 0 0 3px #bbb; transform: translateY(-1px); }
.button:active { box-shadow: inset 0 0 3px #333; transform: none; }
.button.white { background: linear-gradient(#f9f9f9 0%, #f0f0f0 100%); border-color: #dedede #d8d8d8 #d3d3d3; color: #555 !important; text-shadow: 0 1px 0 #fff; }
.button.black { background: linear-gradient(#616161 0%, #222222 100%); border-color: #4c4c4c #313131 #1f1f1f; color: #fff !important; text-shadow: 0 1px 0 #2e2e2e; }
.button.gray { background: linear-gradient(#cacaca 0%, #aeaeae 100%); border-color: #b5b5b5 #a1a1a1 #8f8f8f; color: #555 !important; text-shadow: 0 1px 0 #d4d4d4; }
.button.blue { background: linear-gradient(#39a3e6 0%, #006699 100%); border-color: #0082d5 #006aa8 #005580; color: #fff !important; text-shadow: 0 -1px 0 #004466; }
.button.orange { background: linear-gradient(#f5a14f 0%, #d77011 100%); border-color: #e0852f #c96a10 #b05c0c; color: #fff !important; text-shadow: 0 -1px 0 #8f4a08; }
.button.big { font-size: 13px; line-height: 16px; padding: 11px 22px; }
.button i { margin-right: 5px; }

/* Download button (was download_button_*.png) */
.download_button {
    display: inline-flex; align-items: center; gap: 16px;
    max-width: 401px; width: 100%; min-height: 89px;
    padding: 14px 24px;
    border-radius: 10px;
    background: linear-gradient(#fdfdfd, #d9d9d9);
    border: 1px solid #aaa;
    box-shadow: 0 3px 8px rgba(0,0,0,.25), inset 0 1px 0 #fff;
    color: #333 !important; text-decoration: none !important;
    cursor: pointer;
    transition: all .25s;
}
.download_button i { font-size: 38px; color: #069; transition: transform .3s; }
.download_button b { display: block; font: bold 22px/1.1 var(--helvetica); letter-spacing: -.5px; }
.download_button small { font: 12px/1.4 var(--helvetica); color: #666; }
.download_button:hover { background: linear-gradient(#e6f4fc, #b9dcf0); border-color: #069; }
.download_button:hover i { transform: translateY(3px); }

/* ---------- Tables (original #gradient-style / #hor-minimalist-b) ---------- */
.gradient-style {
    font-family: var(--lucida);
    font-size: 12px;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    border: 1px solid #ccc;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
}
.gradient-style th {
    font-size: 13px; font-weight: normal; padding: 8px;
    background: linear-gradient(#f2f2f2, #d5d5d5);
    border-top: 1px solid #fff; border-bottom: 1px solid #ccc; color: #069;
}
.gradient-style td {
    padding: 8px; border-bottom: 1px solid #ccc; color: #555; border-top: 1px solid #999;
    background: linear-gradient(#fafafa, #ececec);
    transition: background .2s, color .2s;
}
.gradient-style tfoot tr td { background: #e0e0e0; font-size: 12px; color: #999; border-bottom: 1px solid #999; }
.gradient-style tbody tr:hover td { background: linear-gradient(#ffffff, #e0e0e0); color: #339; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.hor-minimalist-b { font-family: var(--lucida); font-size: 11px; background: #fff; width: 100%; border-collapse: collapse; text-align: left; }
.hor-minimalist-b th { font-size: 12px; font-weight: normal; color: #039; padding: 10px 8px; border-bottom: 2px solid #6678b1; }
.hor-minimalist-b td { border-bottom: 1px solid #ccc; color: #669; padding: 6px 8px; }
.hor-minimalist-b tbody tr:hover td { color: #009; }

/* ---------- Tabs (original) ---------- */
ul.tabs { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; border-bottom: 1px solid #999; }
ul.tabs li { margin: 0 -1px -1px 0; padding: 0; line-height: 31px; border: 1px solid #999; background: #e0e0e0; }
ul.tabs li a, ul.tabs li button { text-decoration: none; color: #000; display: block; font-size: 1.1em; padding: 0 20px; border: 1px solid #fff; outline: none; background: none; cursor: pointer; font-family: inherit; line-height: 29px; }
ul.tabs li:hover { background: #ccc; }
ul.tabs li.active { background: #fff; border-bottom-color: #fff; }
.tab_container { border: 1px solid #999; border-top: none; background: #fff; border-radius: 0 0 5px 5px; }
.tab_content { padding: 20px; font-size: 1.1em; display: none; animation: fadeUp .35s ease; }
.tab_content.active { display: block; }
.tab_content h2 { font-weight: normal; padding-bottom: 10px; border-bottom: 1px dashed #ccc; font-size: 1.1em; font-family: var(--lucida); margin-top: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Pagination (original) ---------- */
.pagination { font-size: 10px; font-weight: bold; padding: 15px 0 10px; border-top: 1px solid #ccc; }
.pagination a { border: 1px solid #ccc; border-radius: 3px; padding: 3px 6px; margin: 0 1px; background: #fff; }
.pagination a.active { background: #39a3e6; border: 1px solid #0082d5; color: #fff; }
.pagination a:hover { color: #fff; background: #ec8526; border: 1px solid #d77011; text-decoration: none; }

/* ---------- Forms (original .signup-input etc.) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-row { margin-bottom: 12px; position: relative; }
.form-row label { display: block; font: bold 12px var(--lucida); color: #333; margin-bottom: 4px; }
.form-row label .req { color: #e3302c; }
.signup-input, .text-input, .form-row input[type=text], .form-row input[type=email], .form-row input[type=password], .form-row input[type=tel], .form-row input[type=url], .form-row select, .form-row textarea {
    width: 100%;
    padding: 8px 9px;
    display: block;
    font: 14px Arial, Helvetica, sans-serif;
    border: 1px solid #999;
    border-radius: 3px;
    background: #fff linear-gradient(#f1f1f1, #fff 8px);
    transition: border-color .2s, box-shadow .2s;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: #069; box-shadow: 0 0 0 3px rgba(0,102,153,.18); }
.form-row.invalid input, .form-row.invalid select, .form-row.invalid textarea { border-color: #e3302c; background: #fff5f4; }
.form-row.valid input, .form-row.valid select, .form-row.valid textarea { border-color: #7cb342; }
.field-error { display: none; color: #e3302c; font-size: 11px; margin-top: 4px; }
.form-row.invalid .field-error { display: block; animation: fadeUp .2s ease; }
.form-row .hint-text { font-size: 11px; color: #777; margin-top: 3px; }
.checkbox-row { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; line-height: 1.5; }
.checkbox-row input { margin-top: 3px; }
.checkbox-row.invalid { color: #e3302c; }
.pw-meter { height: 6px; background: #ddd; border-radius: 3px; margin-top: 6px; overflow: hidden; }
.pw-meter span { display: block; height: 100%; width: 0; background: #e3302c; transition: width .3s, background .3s; }
.pw-toggle { position: absolute; right: 8px; top: 29px; background: none; border: 0; color: #888; cursor: pointer; font-size: 14px; }
.captcha-box { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.captcha-q { font: bold 16px Consolas, monospace; background: repeating-linear-gradient(45deg, #eee, #eee 4px, #e2e2e2 4px, #e2e2e2 8px); border: 1px solid #bbb; padding: 7px 12px; border-radius: 3px; letter-spacing: 2px; user-select: none; }
.captcha-box input { max-width: 110px; }
.form-status { display: none; }
.form-status.show { display: block; }

/* ---------- Blog (original) ---------- */
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 22px; }
.blog h2 { font-weight: normal; padding-bottom: 1px; margin-bottom: 1px; font-size: 1.5em; font-family: var(--lucida); }
.blog_content { color: #444; margin: 10px 0; font-family: Arial, Sans-Serif; line-height: 150%; }
.blog_title h1 { font-weight: normal; padding-bottom: 5px; border-bottom: 1px dashed #bbb; font-size: 1.9em; font-family: var(--lucida); }
.blog_sidebar_header { font-family: var(--lucida); color: #000; font-size: 12px; font-weight: bold; margin: 0 0 8px; }
.sidebar .blog_sidebar { margin-bottom: 14px; }
.sidebar ul { margin: 0; padding-left: 16px; }
.sidebar li { margin: 5px 0; line-height: 1.4; font-size: 11px; }
.tag { display: inline-block; font: 10px Verdana, sans-serif; background: #fff; border: 1px solid #ccc; border-radius: 3px; padding: 2px 6px; margin: 2px 2px 0 0; color: #069; }

.post-card {
    display: grid; grid-template-columns: 220px 1fr; gap: 18px;
    background: #fff;
    border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px;
    padding: 12px; margin-bottom: 18px;
    transition: transform .25s, box-shadow .25s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.post-card .thumb { overflow: hidden; border-radius: 3px; display: block; aspect-ratio: 12/7; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card h2 { margin: 0 0 4px; font-size: 1.35em; }
.post-card p { margin: 8px 0; line-height: 1.55; }
.read-more { font-weight: bold; font-size: 11px; font-family: Verdana, sans-serif; }
.read-more i { transition: transform .2s; }
.read-more:hover i { transform: translateX(4px); }

.blog-filter { display: flex; gap: 6px; flex-wrap: wrap; margin: 6px 0 16px; }
.blog-filter button, .chip {
    font: bold 10px 'Helvetica Neue', Helvetica, sans-serif; text-transform: uppercase;
    border: 1px solid #bbb; border-radius: 12px; padding: 5px 10px; background: linear-gradient(#f9f9f9, #ececec); color: #555; cursor: pointer;
}
.blog-filter button.active, .chip.active { background: linear-gradient(#39a3e6, #006699); color: #fff; border-color: #006aa8; }
.search-input { width: 100%; padding: 8px 10px 8px 30px; border: 1px solid #999; border-radius: 3px; font-size: 13px; background: #fff; }
.search-wrap { position: relative; }
.search-wrap i { position: absolute; left: 10px; top: 10px; color: #999; }

/* Article */
.article-hero { position: relative; border-radius: 5px; overflow: hidden; margin: 14px 0 6px; border: 1px solid #999; }
.article-hero img { display: block; width: 100%; aspect-ratio: 12/6; object-fit: cover; }
.photo-credit { font-size: 10px; color: #888; margin: 2px 0 14px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; font: 11px Verdana, sans-serif; color: #777; margin: 6px 0; }
.article-meta i { color: #069; margin-right: 3px; }
.article-body { font-size: 13px; line-height: 1.7; color: #333; }
.article-body h2 { border-bottom: 1px dashed #bbb; padding-bottom: 5px; scroll-margin-top: 20px; }
.article-body h3 { scroll-margin-top: 20px; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin: 5px 0; }
.article-body blockquote { margin: 16px 0; padding: 12px 18px; background: #fff; border-left: 4px solid #069; border-radius: 0 5px 5px 0; font-style: italic; color: #555; }
.article-body table { margin: 14px 0; }
.article-body code { background: #fff; border: 1px solid #ddd; border-radius: 3px; padding: 1px 4px; font-size: 12px; }
.toc { margin: 14px 0 18px; }
.toc .t_header { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.toc ol { margin: 10px 0 0; padding-left: 20px; }
.toc li { margin: 4px 0; font-size: 12px; }
.toc li a.current { color: #ec8526; font-weight: bold; }
.toc.collapsed ol { display: none; }
.key-takeaways { background: #edfbd8; border: 1px solid #bfde84; border-radius: 5px; padding: 12px 18px; margin: 16px 0; }
.key-takeaways h3 { margin-top: 0; color: #508600 !important; font-size: 1.05em !important; }
.key-takeaways ul { margin: 0; }
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, #39a3e6, #006699); z-index: 1000; transition: width .1s linear; }
.share-row { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin: 18px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-grid a { display: block; background: #fff; border: 1px solid #ccc; border-radius: 5px; overflow: hidden; color: #222; transition: transform .25s, box-shadow .25s; }
.related-grid a:hover { transform: translateY(-3px); box-shadow: 0 6px 14px rgba(0,0,0,.12); text-decoration: none; }
.related-grid img { display: block; width: 100%; aspect-ratio: 12/7; object-fit: cover; }
.related-grid span { display: block; padding: 8px 10px; font: 12px/1.35 var(--lucida); }

/* ---------- Cards / grids (new, in the original visual language) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature {
    background: #fff;
    border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px;
    padding: 16px;
    transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,.12); }
.feature .ico {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 18px; margin-bottom: 10px;
    background: radial-gradient(circle at 35% 30%, #5bb6e8 0%, #0a78b4 50%, #004f7a 100%);
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
}
.feature h3 { margin: 0 0 6px !important; font-size: 1.1em !important; }
.feature p { margin: 0; line-height: 1.55; }

.service-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 22px rgba(0,0,0,.15); }
.service-card .thumb { position: relative; overflow: hidden; aspect-ratio: 12/6; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .thumb img { transform: scale(1.07); }
.service-card .badge { position: absolute; left: 10px; top: 10px; }
.service-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin: 0 0 6px !important; }
.service-card p { margin: 0 0 12px; line-height: 1.55; flex: 1; }
.service-card .price-from { font: bold 12px var(--lucida); color: #069; margin-bottom: 10px; }
.badge { display: inline-block; font: bold 10px 'Helvetica Neue', Helvetica, sans-serif; text-transform: uppercase; color: #fff; background: #ec8526; border-radius: 3px; padding: 3px 7px; box-shadow: 0 1px 2px rgba(0,0,0,.3); }
.badge.blue { background: #069; }
.badge.green { background: #508600; }

.check-list { list-style: none; padding: 0 !important; margin: 10px 0; }
.check-list li { padding-left: 22px; position: relative; margin: 6px 0; line-height: 1.5; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 0; color: #508600; }

/* Hero */
.hero {
    position: relative;
    margin: 0 -8px;
    min-height: 300px;
    color: #fff;
    overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 8s ease-out; }
.hero.loaded .hero-bg { transform: scale(1); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,35,60,.92) 0%, rgba(0,60,95,.75) 50%, rgba(0,0,0,.2) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 30px 28px; max-width: 520px; }
.hero h1 { font: bold 30px/1.15 var(--helvetica); letter-spacing: -1px; margin: 0 0 10px; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.4); }
.hero p { font-size: 14px; line-height: 1.55; margin: 0 0 16px; color: #e6f2f8; }
.hero .typed { color: #7fd0ff; border-right: 2px solid #7fd0ff; padding-right: 2px; animation: caret .8s step-end infinite; }
@keyframes caret { 50% { border-color: transparent; } }
.hero .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.page-hero { min-height: 190px; }
.page-hero h1 { font-size: 26px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0 -8px; background: linear-gradient(#fafafa, #e4e4e4); border-bottom: 1px solid #bbb; border-top: 1px solid #fff; }
.stat { text-align: center; padding: 16px 6px; border-right: 1px solid #ccc; box-shadow: inset -1px 0 0 #fff; }
.stat:last-child { border-right: 0; box-shadow: none; }
.stat b { display: block; font: bold 26px/1 var(--helvetica); color: #069; letter-spacing: -1px; }
.stat span { font: 11px var(--helvetica); color: #666; text-transform: uppercase; letter-spacing: .5px; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step { position: relative; background: #fff; border: 1px solid #ccc; border-radius: 5px; padding: 34px 12px 14px; text-align: center; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(#f5a14f, #d77011); color: #fff; font: bold 14px/30px Arial; box-shadow: 0 2px 3px rgba(0,0,0,.3); }
.step i { font-size: 22px; color: #069; margin-bottom: 6px; }
.step h3 { font-size: 1em !important; margin: 4px 0 !important; }
.step p { margin: 0; font-size: 11px; line-height: 1.5; }

/* Pricing */
.billing-toggle { display: inline-flex; background: #fff; border: 1px solid #aaa; border-radius: 20px; padding: 3px; margin: 8px 0 18px; }
.billing-toggle button { border: 0; background: none; padding: 6px 14px; border-radius: 16px; font: bold 11px 'Helvetica Neue', Helvetica, sans-serif; color: #555; cursor: pointer; transition: all .25s; }
.billing-toggle button.active { background: linear-gradient(#39a3e6, #006699); color: #fff; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.plan {
    background: #fff; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px;
    text-align: center; display: flex; flex-direction: column; overflow: hidden; position: relative;
    transition: transform .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,.15); }
.plan.popular { border: 2px solid #069; }
.plan .ribbon { position: absolute; top: 14px; right: -34px; transform: rotate(45deg); background: #ec8526; color: #fff; font: bold 9px Arial; text-transform: uppercase; padding: 4px 36px; }
.plan header { background: linear-gradient(#f2f2f2, #d5d5d5); border-bottom: 1px solid #bbb; padding: 14px 10px; }
.plan header h3 { margin: 0 !important; font-size: 1.25em !important; color: #069 !important; }
.plan .price { font: bold 34px/1 var(--helvetica); color: #222; margin: 16px 0 2px; letter-spacing: -1px; }
.plan .price sup { font-size: 15px; vertical-align: top; position: relative; top: 4px; }
.plan .per { font-size: 11px; color: #888; }
.plan .save { display: inline-block; margin-top: 6px; }
.plan ul { list-style: none; padding: 12px 18px; margin: 0; text-align: left; flex: 1; }
.plan li { border-bottom: 1px dashed #ddd; padding: 6px 0 6px 20px; position: relative; }
.plan li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: #508600; }
.plan li.no { color: #aaa; }
.plan li.no::before { content: "\f00d"; color: #ccc; }
.plan footer { padding: 0 14px 16px; }

/* Comparison */
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare .fa-check { color: #508600; }
.compare .fa-xmark { color: #c33; }

/* Accordion (FAQ / KB) */
.accordion-item { background: #fff; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px; margin-bottom: 8px; overflow: hidden; }
.accordion-item > button {
    width: 100%; text-align: left; background: linear-gradient(#fafafa, #ececec); border: 0; padding: 11px 38px 11px 14px;
    font: 13px var(--lucida); color: #069; cursor: pointer; position: relative; line-height: 1.4;
}
.accordion-item > button::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: 14px; top: 12px; font-size: 11px; color: #888; transition: transform .3s; }
.accordion-item.open > button::after { transform: rotate(180deg); }
.accordion-item > button:hover { background: linear-gradient(#fff, #e3e3e3); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-panel > div { padding: 4px 16px 12px; line-height: 1.6; color: #444; font-size: 12px; }
.faq-cat { font: bold 11px Verdana, sans-serif; text-transform: uppercase; color: #777; margin: 20px 0 8px; letter-spacing: .5px; }
.no-results { display: none; }
mark { background: #ffec8b; padding: 0 1px; }

/* KB */
.kb_category { color: #00326f; font-size: 13px; font-family: Verdana, sans-serif; }
.kb_content { color: #555; font-size: 11px; font-family: Verdana, sans-serif; }

/* Tools */
.tool-box { background: #fff; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px; padding: 18px; margin: 14px 0; }
.tool-box h2 { margin-top: 0 !important; font-size: 1.25em !important; }
.ip-display { font: bold 32px/1.1 Consolas, Monaco, monospace; color: #069; letter-spacing: 1px; word-break: break-all; }
.kv { width: 100%; border-collapse: collapse; }
.kv th, .kv td { text-align: left; padding: 7px 8px; border-bottom: 1px dashed #ddd; font-size: 12px; vertical-align: top; }
.kv th { width: 38%; color: #555; font-weight: bold; font-family: var(--lucida); }
.kv td { word-break: break-word; }
.status-pill { display: inline-block; padding: 2px 8px; border-radius: 10px; font: bold 10px Arial; text-transform: uppercase; }
.status-pill.ok { background: #edfbd8; color: #508600; border: 1px solid #bfde84; }
.status-pill.bad { background: #ffecce; color: #e3302c; border: 1px solid #e9c59b; }
.status-pill.neutral { background: #ecf9ff; color: #0888c3; border: 1px solid #bbdbe0; }
.pwgen-out { display: flex; gap: 6px; }
.pwgen-out input { flex: 1; font: bold 16px Consolas, monospace !important; }
.range-row { display: flex; align-items: center; gap: 10px; }
.range-row input[type=range] { flex: 1; }
.opts { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 10px 0; }

/* Server list */
.server-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.server-filters .search-wrap { flex: 1; min-width: 200px; }
.load-bar { width: 80px; height: 7px; background: #ddd; border-radius: 4px; overflow: hidden; display: inline-block; vertical-align: middle; }
.load-bar span { display: block; height: 100%; background: #7cb342; }
.flag { font-size: 16px; margin-right: 4px; }

/* Map / diagram */
.diagram-wrap { text-align: center; padding: 0 20px; }
.diagram-wrap a { display: inline-block; position: relative; }
.diagram-wrap a::after { content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: 10px; bottom: 12px; background: rgba(0,0,0,.6); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; opacity: 0; transition: opacity .3s; }
.diagram-wrap a:hover::after { opacity: 1; }

/* Swiper (article carousel) */
.posts-swiper { padding-bottom: 34px !important; }
.posts-swiper .swiper-slide { height: auto; }
.posts-swiper .swiper-pagination-bullet-active { background: #069; }
.posts-swiper .swiper-button-next, .posts-swiper .swiper-button-prev { color: #069; top: 62px; width: 34px; height: 34px; margin-top: 0; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 2px 6px rgba(0,0,0,.3); transition: transform .2s; }
.posts-swiper .swiper-button-next:hover, .posts-swiper .swiper-button-prev:hover { transform: scale(1.1); }
.posts-swiper .swiper-button-next::after, .posts-swiper .swiper-button-prev::after { font-size: 14px; font-weight: bold; }

/* CTA band */
.cta-band {
    margin: 26px -8px 0;
    padding: 24px 28px;
    background: linear-gradient(#1a86bd, #004f7a);
    color: #fff;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}
.cta-band h2 { color: #fff !important; margin: 0 0 4px !important; font: bold 20px var(--helvetica) !important; letter-spacing: -.5px; }
.cta-band p { margin: 0; color: #d6ecf7; }

/* ---------- Floating share box (original #sharebox) ---------- */
#sharebox-wrapper { position: absolute; left: -82px; top: 240px; width: 80px; z-index: 5; }
#sharebox {
    width: 80px; background: #F3F3F3;
    border: 1px solid #CFCFCF; border-right: 0;
    border-top-left-radius: 3px; border-bottom-left-radius: 3px;
    box-shadow: inset -6px 0 6px -4px rgba(0,0,0,.15);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
#sharebox .inner { padding: 4px 8px; text-align: center; }
#sharebox .panel { margin: 12px 0; }
#sharebox .panel a, #sharebox .panel button {
    display: grid; place-items: center; width: 40px; height: 40px; margin: 0 auto; border-radius: 50%;
    background: #fff; border: 1px solid #ccc; color: #555; font-size: 16px; cursor: pointer; transition: all .25s;
}
#sharebox .panel a:hover, #sharebox .panel button:hover { background: #069; color: #fff; border-color: #069; transform: scale(1.1); text-decoration: none; }
#sharebox .panel small { display: block; font: 9px/11px 'Helvetica Neue', Helvetica, sans-serif; color: #777; margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { max-width: var(--col-width); margin: 0 auto; padding: 0 10px 30px; }
.footer-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 18px; text-align: left; margin-bottom: 22px; }
.footer-cols h4 { font: bold 12px var(--lucida); color: #555; margin: 0 0 8px; text-shadow: 0 1px 0 #fff; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin: 5px 0; font-size: 11px; }
.footer-cols a { color: #777; }
.footer-cols a:hover { color: #069; }
.footer-cols p { font-size: 11px; color: #888; line-height: 1.5; margin: 0 0 8px; }
.newsletter { display: flex; gap: 4px; margin-top: 6px; }
.newsletter input { flex: 1; min-width: 0; padding: 6px; border: 1px solid #aaa; border-radius: 3px; font-size: 12px; }
.newsletter .form-row { margin: 0; flex: 1; }
.styleCopyrightFooter, .styleCopyrightFooter a {
    text-align: center;
    font-family: var(--helvetica);
    font-size: 17px;
    color: #b5b5b5;
    text-shadow: #FFFFFF 1px 1px 0px;
    letter-spacing: -1px;
    word-spacing: 1px;
    text-decoration: none;
}
.styleLegal, .styleLegal a {
    text-align: center;
    font-family: var(--helvetica);
    font-size: 11px;
    color: #b2b2b2;
    text-decoration: none;
    line-height: 1.8;
}
.styleLegal a:hover { color: #069; }

/* Back to top */
#to-top {
    position: fixed; right: 18px; bottom: 18px; width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid #999; background: linear-gradient(#fdfdfd, #d5d5d5); color: #069; font-size: 16px; cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.3); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 90;
}
#to-top.show { opacity: 1; visibility: visible; transform: none; }
#to-top:hover { background: linear-gradient(#39a3e6, #006699); color: #fff; }

/* Cookie bar */
.cookie-bar {
    position: fixed; left: 50%; bottom: 16px; transform: translate(-50%, 150%);
    width: calc(100% - 32px); max-width: 720px;
    background: #FFFFCC; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25); padding: 12px 16px; z-index: 95;
    display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap;
    transition: transform .5s cubic-bezier(.2,.8,.2,1); font-size: 12px; line-height: 1.5; color: #333;
}
.cookie-bar.show { transform: translate(-50%, 0); }
.cookie-bar .actions { display: flex; gap: 6px; }

/* Tooltip (tipTip look, vanilla implementation) */
#tiptip_holder { display: none; position: absolute; top: 0; left: 0; z-index: 99999; pointer-events: none; }
#tiptip_holder.tip_top { padding-bottom: 5px; }
#tiptip_holder.show { display: block; animation: fadeUp .15s ease; }
#tiptip_content {
    font-size: 11px; color: #fff; text-shadow: 0 0 2px #000; padding: 4px 8px;
    border: 1px solid rgba(255,255,255,0.25); background-color: rgba(25,25,25,0.92);
    border-radius: 3px; box-shadow: 0 0 3px #555; max-width: 280px; line-height: 1.4;
}
#tiptip_arrow { position: absolute; left: 50%; bottom: -1px; margin-left: -6px; border: 6px solid transparent; border-top-color: rgba(25,25,25,0.92); border-bottom: 0; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: none; align-items: center; justify-content: center; z-index: 200; padding: 16px; }
.modal.open { display: flex; animation: fadeIn .2s ease; }
.modal-box { background: #f3f3f3; border: 1px solid #999; border-top: 3px solid #069; border-radius: 5px; max-width: 460px; width: 100%; padding: 20px; position: relative; animation: fadeUp .3s ease; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.modal-close { position: absolute; right: 10px; top: 8px; border: 0; background: none; font-size: 18px; color: #888; cursor: pointer; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Thank-you */
.thanks-icon { width: 86px; height: 86px; border-radius: 50%; margin: 20px auto 10px; display: grid; place-items: center; background: #edfbd8; border: 2px solid #bfde84; color: #508600; font-size: 40px; animation: pop .6s cubic-bezier(.2,1.6,.4,1); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* 404 */
.big-404 { font: bold 110px/1 var(--helvetica); color: #c9c9c9; text-shadow: 1px 1px 0 #fff; letter-spacing: -5px; text-align: center; margin: 20px 0 0; }

/* Policy pages */
.policy-body { font-size: 12.5px; line-height: 1.7; color: #333; }
.policy-body h2 { font-size: 1.3em !important; border-bottom: 1px dashed #bbb; padding-bottom: 4px; scroll-margin-top: 16px; }
.policy-body h3 { font-size: 1.08em !important; }
.policy-body ul, .policy-body ol { padding-left: 22px; }
.policy-body li { margin: 4px 0; }
.policy-updated { font: 11px Verdana, sans-serif; color: #777; }
.policy-nav { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }

/* Contact */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 14px 0; }
.contact-cards .feature { text-align: center; }
.contact-cards .feature .ico { margin: 0 auto 8px; }

/* Utility */
.mt0 { margin-top: 0 !important; } .mt20 { margin-top: 20px; } .mb20 { margin-bottom: 20px; }
.clearfix::after { content: ""; display: table; clear: both; }
.float-img { float: right; width: 45%; margin: 4px 0 12px 18px; border-radius: 5px; border: 1px solid #999; }
.rounded-img { border-radius: 5px; border: 1px solid #999; display: block; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    #sharebox-wrapper { display: none; }
}
@media (max-width: 760px) {
    .td_content { box-shadow: none; }
    .header { min-height: 120px; }
    .logo { top: 14px; left: 14px; }
    .menu-toggle { display: block; }
    #top_header { display: none; float: none; position: absolute; left: 8px; right: 8px; top: 56px; margin: 0; border-radius: 4px; box-shadow: 0 8px 20px rgba(0,0,0,.25); border: 1px solid #ccc; }
    #top_header.open { display: block; animation: fadeUp .25s ease; }
    #top_header > ul > li { float: none; border-bottom: 1px solid #eee; }
    #top_header li a { border-left: 0; font-size: 13px; padding: 10px 14px; }
    .boxHover { position: static; visibility: visible; opacity: 1; transform: none; display: none; border: 0; border-top: 1px solid #eee; box-shadow: none; padding: 4px 14px 8px 26px; }
    #menu_header li.focused .boxHover { display: block; }
    .ip_box, .ip_box2 { bottom: 10px; right: 10px; }
    .linkbar-btn { min-height: 0; flex-direction: column; gap: 6px; padding: 8px 4px; text-align: center; }
    .linkbar-btn i { flex: 0 0 38px; width: 38px; height: 38px; font-size: 16px; }
    .linkbar-btn b { font-size: 15px; }
    .linkbar-btn span { display: none; }
    .grid-2, .grid-3, .pricing, .related-grid, .contact-cards, .form-grid { grid-template-columns: 1fr; }
    .steps, .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .blog-layout { grid-template-columns: 1fr; }
    .post-card { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .hero-inner { padding: 24px 16px; }
    .hero h1 { font-size: 24px; }
    .contents { padding: 10px 8px 0; }
    .breadcrumbs { padding: 12px 8px 0; }
    .float-img { float: none; width: 100%; margin: 10px 0; }
    .cta-band { padding: 20px 16px; }
}
@media (max-width: 420px) {
    .footer-cols { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
}
