:root {
    color-scheme: dark;
    --bg: #07121c;
    --bg2: #0b1d28;
    --surface: rgba(12, 28, 40, 0.78);
    --surface2: rgba(9, 20, 31, 0.94);
    --text: #edf8ff;
    --muted: #9cb5c7;
    --line: rgba(121, 209, 236, 0.2);
    --green: #00f5a8;
    --cyan: #3bdcff;
    --amber: #ffcb66;
    --red: #ff6375;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
    color-scheme: light;
    --bg: #f4f8fb;
    --bg2: #eaf2f7;
    --surface: rgba(255, 255, 255, 0.82);
    --surface2: rgba(255, 255, 255, 0.96);
    --text: #06131d;
    --muted: #587083;
    --line: rgba(2, 45, 68, 0.15);
    --shadow: 0 18px 46px rgba(20, 56, 76, 0.14);
}

* { box-sizing: border-box; }

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: linear-gradient(180deg, var(--bg), var(--bg2));
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input { font: inherit; }

.glass {
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(18px);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 6px clamp(14px, 3vw, 34px);
    background: rgba(8, 20, 31, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

.brand { display: inline-flex; align-items: center; min-width: 180px; }
.brand img { width: 180px; height: auto; display: block; }

.site-header nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .93rem;
}

.site-header nav a {
    padding: 10px 14px;
    border-radius: 8px;
}

.site-header nav a.active,
.site-header nav a:hover {
    color: var(--text);
    background: rgba(255,255,255,.06);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    place-items: center;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    box-shadow: 0 0 12px rgba(59,220,255,.25);
    transition: transform .22s ease, opacity .22s ease;
}

.site-header.nav-open .nav-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }

.theme-toggle {
    width: 52px;
    height: 30px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
}

.theme-toggle span {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px var(--green);
}

html[data-theme="light"] .theme-toggle span { margin-left: auto; }

.hero {
    min-height: calc(100vh - 62px);
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    gap: 40px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 76px) clamp(18px, 4vw, 44px) 34px;
}

.hero-label {
    display: inline-flex;
    color: var(--green);
    font-weight: 900;
    margin-bottom: 14px;
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(3.1rem, 8vw, 6.7rem);
    line-height: .92;
    letter-spacing: 0;
}

.hero p {
    max-width: 760px;
    color: #b7d8ee;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.65;
}

.scan-form {
    max-width: 760px;
    margin-top: 28px;
    padding: 16px;
}

.scan-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.scan-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(59, 220, 255, .28);
    border-radius: 8px;
    background: var(--surface2);
}

.scan-row span {
    padding: 0 12px;
    color: var(--green);
    font-weight: 900;
}

.scan-row input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 18px 12px;
    font-size: 1.05rem;
}

.scan-row button {
    min-height: 58px;
    border: 0;
    padding: 0 24px;
    cursor: pointer;
    color: #031119;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.hero-robot {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-rows: 250px 210px;
    place-items: center;
    isolation: isolate;
}

.hero-robot::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,245,168,.22), rgba(59,220,255,.12) 36%, transparent 68%);
    filter: blur(4px);
    z-index: -1;
}

.hero-bubble {
    position: absolute;
    top: 2%;
    left: 3%;
    z-index: 5;
    max-width: 340px;
    padding: 16px 18px;
    border: 1px solid rgba(59, 220, 255, .3);
    border-radius: 16px 16px 16px 5px;
    background: rgba(8, 23, 35, .94);
    box-shadow: var(--shadow);
}

.hero-bubble::after {
    content: "";
    position: absolute;
    right: 42px;
    bottom: -12px;
    width: 22px;
    height: 22px;
    border-right: 1px solid rgba(59, 220, 255, .3);
    border-bottom: 1px solid rgba(59, 220, 255, .3);
    background: rgba(8, 23, 35, .94);
    transform: rotate(45deg);
}

.hero-bubble strong,
.hero-bubble span {
    display: block;
}

.hero-bubble strong {
    color: var(--green);
    margin-bottom: 6px;
}

.hero-bubble span {
    color: var(--text);
    line-height: 1.45;
}

.hero-bubble span.bubble-in {
    animation: bubble-in .36s ease both;
}

.robot-head,
.bot-face {
    position: relative;
    width: 210px;
    height: 150px;
    border-radius: 58px;
    background: linear-gradient(145deg, #f3fbff, #c7e9f6);
    box-shadow: inset 0 -18px 32px rgba(0,0,0,.12), 0 28px 70px rgba(0,245,168,.18);
}

.robot-head {
    grid-row: 1;
    align-self: end;
    z-index: 2;
    animation: bot-float 4.6s ease-in-out infinite;
}

.robot-head::after {
    content: "";
    position: absolute;
    inset: 32px -22px auto;
    height: 74px;
    border-radius: 34px;
    background: linear-gradient(90deg, #9de8ff, #e9fbff, #9de8ff);
    z-index: -1;
    box-shadow: 0 0 30px rgba(59,220,255,.24);
}

.robot-head::before,
.bot-face::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 38px;
    height: 78px;
    border-radius: 32px;
    background: #06131d;
    box-shadow: inset 0 0 18px rgba(59,220,255,.28);
}

.eye {
    position: absolute;
    top: 68px;
    z-index: 2;
    width: 22px;
    height: 28px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
    animation: bot-eye 3.5s ease-in-out infinite;
}

.eye.left { left: 70px; }
.eye.right { right: 70px; }
.mouth {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 99px;
    width: 36px;
    height: 14px;
    transform: translateX(-50%);
    border-bottom: 5px solid var(--green);
    border-radius: 0 0 30px 30px;
    animation: bot-smile 3.8s ease-in-out infinite;
}

.robot-body {
    grid-row: 2;
    align-self: start;
    position: relative;
    width: 170px;
    height: 140px;
    margin-top: -12px;
    border-radius: 46px 46px 34px 34px;
    background: linear-gradient(145deg, #eef8fc, #b7d9e8);
    display: grid;
    place-items: center;
    box-shadow: 0 22px 60px rgba(59,220,255,.13);
}

.robot-body::before,
.robot-body::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 42px;
    height: 96px;
    border-radius: 28px;
    background: linear-gradient(145deg, #eef8fc, #91d6ed);
    box-shadow: inset 0 -10px 18px rgba(0,0,0,.12);
}

.robot-body::before {
    left: -38px;
    transform: rotate(15deg);
}

.robot-body::after {
    right: -38px;
    transform: rotate(-15deg);
}

.robot-body span {
    width: 54px;
    height: 64px;
    border-radius: 16px;
    border: 3px solid var(--green);
    box-shadow: 0 0 20px rgba(0,245,168,.4);
}

.audit-card {
    position: absolute;
    padding: 16px;
    min-width: 210px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface2);
}

.audit-card.top { right: 0; top: 21%; z-index: 4; }
.audit-card.bottom { left: 0; bottom: 10%; z-index: 4; }
.audit-card small, .audit-card span { display: block; color: var(--muted); }
.audit-card strong { display: block; margin: 8px 0; color: var(--green); font-size: 1.6rem; }

.result-stage {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px clamp(18px, 4vw, 44px) 0;
    scroll-margin-top: 80px;
}

.home-faq-band {
    width: min(1280px, calc(100% - 44px));
    margin: 24px auto 10px;
}

.home-faq-band .section-title {
    max-width: 860px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.faq-card {
    padding: 0;
    overflow: hidden;
    border-color: rgba(59,220,255,.2);
}

.faq-card summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 16px 42px 16px 16px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    position: relative;
}

.faq-card summary::-webkit-details-marker { display: none; }

.faq-card summary::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.faq-card[open] summary::after {
    transform: rotate(225deg);
}

.faq-card p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    line-height: 1.55;
}

.placeholder {
    text-align: center;
    padding: 44px 18px;
}

.scan-pulse {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 2px solid var(--green);
    box-shadow: 0 0 26px var(--green);
}

.kpi-grid,
.analysis-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.kpi-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.score-card,
.metric {
    padding: 18px;
    min-height: 132px;
}

.score-card span {
    display: block;
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--green);
}

.score-card strong,
.metric strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 1.2rem;
}

.metric small,
.metric span {
    display: block;
    color: var(--muted);
    margin-top: 8px;
}

.timeline-band {
    margin: 28px 0;
    padding: 24px;
}

.section-eyebrow {
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .78rem;
}

.timeline-head h2,
.section-title h2 {
    margin: 8px 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.timeline-head p,
.section-title p {
    color: var(--muted);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 24px;
}

.countdown div {
    padding: 14px 10px;
    border-radius: 8px;
    background: rgba(0,245,168,.08);
    border: 1px solid rgba(0,245,168,.22);
    text-align: center;
}

.countdown strong {
    display: block;
    color: var(--green);
    font-size: clamp(1.25rem, 3vw, 2rem);
}

.countdown span {
    color: var(--muted);
    font-size: .82rem;
}

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

.timeline-item {
    position: relative;
    padding: 16px;
    border-radius: 8px;
    background: var(--surface2);
    border: 1px solid var(--line);
}

.timeline-item i {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
}

.timeline-ok i { background: var(--green); box-shadow: 0 0 20px var(--green); }
.timeline-warning i { background: var(--amber); box-shadow: 0 0 20px var(--amber); }

.timeline-item strong,
.timeline-item time {
    display: block;
}

.timeline-item time { color: var(--muted); margin-top: 6px; }

.ssl-result-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid #00ff7f;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 255, 127, 0.2);
    text-align: left;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.ssl-result-box h4 { margin: 0 0 12px; font-weight: 800; }
.ssl-result-box p { margin: 5px 0; }
.ssl-result-box .ssl-brand { color: #00ff7f; font-weight: 800; }
.ssl-result-box .ssl-expiry { color: #ffcccb; font-weight: 800; }

.lock-icon {
    display: inline-block;
    width: 30px;
    height: 34px;
    margin-right: 12px;
    border: 2px solid rgba(59,220,255,.82);
    border-radius: 15px 15px 12px 12px;
    vertical-align: -10px;
    position: relative;
    background:
        linear-gradient(145deg, rgba(0,245,168,.22), rgba(59,220,255,.08)),
        radial-gradient(circle at 50% 70%, rgba(0,245,168,.28), transparent 38%);
    box-shadow: 0 0 22px rgba(0,245,168,.2), inset 0 0 18px rgba(59,220,255,.14);
}

.lock-icon::before {
    content: "";
    position: absolute;
    left: 6px;
    top: -14px;
    width: 14px;
    height: 16px;
    border: 3px solid rgba(255,255,255,.88);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    filter: drop-shadow(0 0 8px rgba(59,220,255,.5));
}

.lock-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 13px;
    width: 7px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 8px;
    background: linear-gradient(var(--green), var(--cyan));
    box-shadow: 0 0 16px rgba(0,245,168,.6);
}

.legacy-alert {
    padding: 10px 12px;
    color: #ffd0d7;
    background: rgba(255, 99, 117, .15);
    border: 1px solid rgba(255, 99, 117, .4);
    border-radius: 8px;
}

.ca-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 14px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,255,127,.24);
    background: rgba(0,255,127,.08);
}

.ca-brand-showcase {
    align-items: stretch;
    gap: 22px;
    padding: 16px;
    background:
        linear-gradient(135deg, rgba(0,245,168,.15), rgba(59,220,255,.08)),
        radial-gradient(circle at 0 0, rgba(0,245,168,.2), transparent 36%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 22px 58px rgba(0,245,168,.12);
}

.ca-logo-frame {
    display: grid;
    place-items: center;
}

.ca-logo {
    flex: 0 0 auto;
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 270px;
    min-height: 108px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0,245,168,.38);
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.88), rgba(255,255,255,.72) 38%, rgba(255,255,255,.56)),
        linear-gradient(135deg, rgba(59,220,255,.22), rgba(0,245,168,.18));
    overflow: hidden;
    box-shadow: 0 0 36px rgba(0,245,168,.16), inset 0 0 26px rgba(59,220,255,.1);
}

.ca-logo::after {
    content: "";
    position: absolute;
    inset: -55% -30%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    transform: rotate(18deg);
    animation: logo-shine 5.8s ease-in-out infinite;
    z-index: 1;
}

.ca-logo b {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.2);
    font-size: 2.35rem;
    font-weight: 900;
    letter-spacing: 0;
    z-index: 1;
}

.ca-logo img {
    position: relative;
    z-index: 3;
    width: 230px;
    height: 82px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
}

.ca-brand-copy {
    display: grid;
    align-content: center;
    gap: 4px;
    min-width: 0;
}

.ca-brand-copy small {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}

.ca-brand-copy strong {
    color: var(--text);
    font-size: 1.55rem;
}

.ca-brand-copy span,
.ca-brand-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.checker_certs {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-top: 15px;
    border-collapse: collapse;
}

.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.checker_certs td,
.checker_certs th {
    white-space: normal !important;
    vertical-align: top;
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    padding: 10px;
    background: rgba(0,0,0,.34);
}

.checker_certs td.cert { width: 128px; text-align: center; }
.checker_certs td img { max-width: 82px; height: auto; }
.chain img { max-width: 42px; height: auto; }

.cert-map-section {
    width: min(100% - 44px, 1180px);
    margin: 24px auto 0;
}

.cert-map-section .section-title p {
    color: var(--muted);
    max-width: 760px;
}

.cert-map-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.cert-lane {
    padding: 16px;
    border-color: rgba(59,220,255,.25);
    overflow: hidden;
    border-top: 3px solid rgba(59,220,255,.65);
    background:
        linear-gradient(180deg, rgba(59,220,255,.075), rgba(255,255,255,.025)),
        var(--surface);
}

.cert-lane-server {
    border-top-color: rgba(0,245,168,.78);
    background:
        linear-gradient(180deg, rgba(0,245,168,.09), rgba(255,255,255,.025)),
        var(--surface);
}

.cert-lane-intermediate {
    border-top-color: rgba(255,204,102,.82);
    background:
        linear-gradient(180deg, rgba(255,204,102,.09), rgba(255,255,255,.025)),
        var(--surface);
}

.cert-lane header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cert-lane header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
}

.cert-lane-server header span { background: var(--green); box-shadow: 0 0 18px var(--green); }
.cert-lane-intermediate header span { background: var(--amber); box-shadow: 0 0 18px var(--amber); }

.cert-lane header strong {
    flex: 1;
    font-size: 1rem;
}

.cert-lane header small {
    color: var(--muted);
}

.cert-line {
    position: relative;
    display: grid;
    gap: 14px;
}

.cert-line::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 19px;
    width: 2px;
    background: linear-gradient(var(--green), var(--cyan));
    opacity: .55;
}

.cert-node {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.045);
    box-shadow: inset 3px 0 0 rgba(59,220,255,.42);
}

.cert-node-valid { box-shadow: inset 3px 0 0 rgba(0,245,168,.72); }
.cert-node-soon { box-shadow: inset 3px 0 0 rgba(255,204,102,.78); }
.cert-node-expired { box-shadow: inset 3px 0 0 rgba(255,99,117,.82); }

.cert-node em {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-style: normal;
    font-weight: 900;
    color: #031119;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 0 22px rgba(0,245,168,.22);
}

.cert-node div {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.cert-node strong {
    color: var(--text);
    overflow-wrap: anywhere;
}

.cert-node span,
.cert-node p {
    color: var(--muted);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.cert-node .cert-status {
    justify-self: start;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--text);
    background: rgba(59,220,255,.1);
    border: 1px solid rgba(59,220,255,.2);
}

.cert-node-valid .cert-status {
    color: var(--green);
    background: rgba(0,245,168,.09);
    border-color: rgba(0,245,168,.25);
}

.cert-node-soon .cert-status {
    color: var(--amber);
    background: rgba(255,204,102,.1);
    border-color: rgba(255,204,102,.28);
}

.cert-node-expired .cert-status {
    color: #ff9aa8;
    background: rgba(255,99,117,.1);
    border-color: rgba(255,99,117,.32);
}

.cert-empty {
    grid-template-columns: 1fr;
}

.analysis-card {
    position: relative;
    overflow: visible;
}

.analysis-card summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 54px 16px 16px;
    cursor: pointer;
    list-style: none;
}

.analysis-card summary::-webkit-details-marker { display: none; }

.analysis-card summary span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 16px var(--cyan);
}

.status-ok summary span { background: var(--green); box-shadow: 0 0 16px var(--green); }
.status-warning summary span { background: var(--amber); box-shadow: 0 0 16px var(--amber); }

.analysis-content {
    padding: 0 16px 16px 38px;
    color: var(--muted);
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.mini-list {
    margin: 0;
    padding-left: 18px;
}

.info-control {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(59,220,255,.62);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.28), rgba(59,220,255,.16) 45%, rgba(0,245,168,.1));
    color: var(--cyan);
    cursor: pointer;
    font-weight: 950;
    position: relative;
    z-index: 8;
    user-select: none;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.analysis-card > .info-control {
    position: absolute;
    top: 13px;
    right: 14px;
}

.info-control:hover,
.info-control:focus,
.info-control.info-visible {
    transform: translateY(-1px);
    background: rgba(0,245,168,.15);
    border-color: rgba(0,245,168,.7);
    box-shadow: 0 0 18px rgba(59,220,255,.32);
    outline: 0;
}

.info-control::after {
    content: attr(data-info);
    position: absolute;
    z-index: 5000;
    right: 0;
    top: 34px;
    width: min(340px, calc(100vw - 24px));
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(59,220,255,.35);
    background: var(--surface2);
    color: var(--text);
    box-shadow: var(--shadow);
    line-height: 1.45;
    font-size: .92rem;
    font-weight: 500;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease;
}

.info-control::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 28px;
    width: 10px;
    height: 10px;
    border-left: 1px solid rgba(59,220,255,.35);
    border-top: 1px solid rgba(59,220,255,.35);
    background: var(--surface2);
    transform: rotate(45deg) translateY(8px);
    opacity: 0;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 5001;
    pointer-events: none;
}

.info-control:hover::after,
.info-control:focus::after,
.info-control.info-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.info-control:hover::before,
.info-control:focus::before,
.info-control.info-visible::before {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
}

.vuln-row .info-control::after {
    left: 0;
    right: auto;
}

.vulnerability-section,
.content-band {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 clamp(18px, 4vw, 44px);
}

.vuln-list {
    display: grid;
    gap: 10px;
}

.vuln-row {
    display: grid;
    grid-template-columns: 96px minmax(150px, .25fr) auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.vuln-row > span {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-align: center;
    font-size: .82rem;
}

.vuln-row p { margin: 0; color: var(--muted); }
.severity-critical > span { color: var(--red); border-color: rgba(255,99,117,.45); }
.severity-warning > span { color: var(--amber); border-color: rgba(255,203,102,.45); }
.severity-pass > span { color: var(--green); border-color: rgba(0,245,168,.45); }

.feature-grid article {
    padding: 18px;
}

.feature-grid p {
    color: var(--muted);
    line-height: 1.55;
}

.seo-page {
    width: min(1280px, calc(100% - 36px));
    margin: 0 auto;
    padding: 42px 0 0;
}

.seo-hero {
    padding: clamp(24px, 4vw, 46px);
    position: relative;
    overflow: hidden;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: -40% auto auto 48%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,245,168,.22), rgba(59,220,255,.08) 42%, transparent 70%);
    pointer-events: none;
}

.seo-hero h1 {
    max-width: 920px;
    margin: 10px 0 14px;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    line-height: .98;
    letter-spacing: 0;
}

.seo-hero p {
    max-width: 880px;
    color: #b7d8ee;
    line-height: 1.7;
    font-size: 1.08rem;
}

.seo-cta {
    display: inline-flex;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #031119;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-weight: 950;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.seo-card {
    padding: 20px;
    min-height: 168px;
}

.seo-card strong {
    color: var(--text);
    font-size: 1.08rem;
}

.seo-card p {
    color: var(--muted);
    line-height: 1.62;
}

.seo-guide,
.seo-faq {
    margin: 22px 0;
    padding: 24px;
}

.seo-guide h2,
.seo-faq h2 {
    margin-top: 8px;
}

.seo-guide ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    list-style: none;
    counter-reset: guide;
}

.seo-guide li {
    counter-increment: guide;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
}

.seo-guide li::before {
    content: counter(guide);
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 50%;
    color: #031119;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-weight: 950;
}

.seo-guide li strong,
.seo-guide li span {
    display: block;
}

.seo-guide li span {
    margin-top: 7px;
    color: var(--muted);
    line-height: 1.5;
}

.seo-faq details {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.seo-faq summary {
    cursor: pointer;
    color: var(--text);
    font-weight: 900;
}

.seo-faq p {
    color: var(--muted);
    line-height: 1.6;
}

.ad-rail {
    width: min(1280px, calc(100% - 36px));
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.ad-card {
    min-width: 0;
    min-height: 176px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
    gap: 8px 14px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(90, 228, 255, .25);
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, rgba(7,24,38,.96), rgba(8,52,55,.86));
    box-shadow: 0 24px 70px rgba(0,0,0,.32);
    isolation: isolate;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.ad-card::before,
.ad-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.ad-card::before {
    inset: -55% -22%;
    background: conic-gradient(from 120deg, transparent, rgba(59,220,255,.28), transparent, rgba(0,245,168,.24), transparent);
    animation: ad-scan 7s linear infinite;
}

.ad-card::after {
    inset: 1px;
    border-radius: 11px;
    background: linear-gradient(180deg, rgba(5,18,28,.82), rgba(6,22,33,.95));
}

.ad-icon {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,245,168,.24), rgba(59,220,255,.16));
    border: 1px solid rgba(0,245,168,.32);
    box-shadow: inset 0 0 24px rgba(59,220,255,.12), 0 0 26px rgba(0,245,168,.16);
}

.ad-icon i {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 3px solid var(--green);
    position: relative;
}

.ad-icon i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -13px;
    width: 14px;
    height: 13px;
    border: 3px solid var(--cyan);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    transform: translateX(-50%);
}

.ad-card em {
    color: var(--cyan);
    font-style: normal;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ad-card strong {
    color: var(--text);
    font-size: 1.28rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.ad-card p {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.ad-card b {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #031119;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.ad-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,245,168,.56);
    box-shadow: 0 30px 90px rgba(0,245,168,.12);
}

.ad-dns .ad-icon { border-color: rgba(59,220,255,.45); }
.ad-whois .ad-icon { border-color: rgba(255,203,102,.45); }
.ad-play .ad-icon { border-color: rgba(255,255,255,.34); }

.site-footer {
    width: min(1280px, calc(100% - 36px));
    margin: 28px auto 0;
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(240px, .8fr) minmax(0, 1.4fr);
    gap: 28px;
    border: 1px solid var(--line);
    border-radius: 14px 14px 0 0;
    background: linear-gradient(135deg, rgba(9, 24, 36, .92), rgba(7, 32, 40, .82));
    color: var(--muted);
}

.footer-brand,
.footer-links {
    min-width: 0;
    display: grid;
    gap: 10px;
    align-content: start;
}

.site-footer strong { color: var(--text); }

.footer-brand strong {
    font-size: 1.18rem;
}

.site-footer nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 10px;
}

.site-footer a {
    min-width: 0;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
}

.site-footer a:hover {
    color: var(--green);
    border-color: rgba(0,245,168,.32);
    background: rgba(0,245,168,.08);
}

.seo-agent {
    margin: 26px 0;
    padding: 22px;
}

.serp-preview {
    max-width: 760px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
}

.serp-preview span {
    display: block;
    color: var(--muted);
    font-size: .86rem;
}

.serp-preview strong {
    display: block;
    margin: 7px 0;
    color: #8ab4f8;
    font-size: 1.22rem;
}

.serp-preview p,
.agent-summary {
    color: var(--muted);
    line-height: 1.55;
}

.agent-list {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

.agent-faq {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.agent-faq details {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
}

.keyword-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.keyword-chips span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0,245,168,.09);
    border: 1px solid rgba(0,245,168,.22);
    color: var(--green);
    font-size: .86rem;
}

.service-page {
    width: min(100% - 44px, 1180px);
    margin: 34px auto;
}

.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    margin-bottom: 22px;
}

.service-hero h1 {
    max-width: 780px;
    margin: 10px 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: .96;
}

.service-hero p {
    max-width: 790px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-actions a,
.service-package a,
.service-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #031119;
    font-weight: 950;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 14px 30px rgba(0,245,168,.18);
    cursor: pointer;
}

.hero-actions a:nth-child(2) {
    color: var(--text);
    background: rgba(255,255,255,.065);
    border: 1px solid var(--line);
    box-shadow: none;
}

.purchase-panel {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,245,168,.28);
    background:
        radial-gradient(circle at 100% 0, rgba(0,245,168,.22), transparent 38%),
        rgba(0,245,168,.055);
}

.purchase-panel strong {
    font-size: 1.7rem;
}

.purchase-panel span {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.purchase-panel b {
    color: var(--green);
    font-size: 1.1rem;
}

.lead-alert {
    margin: 16px 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 800;
}

.lead-alert.success {
    color: var(--green);
    background: rgba(0,245,168,.09);
    border: 1px solid rgba(0,245,168,.28);
}

.lead-alert.error {
    color: #ffb6c1;
    background: rgba(255,99,117,.1);
    border: 1px solid rgba(255,99,117,.28);
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
}

.logo-cloud img {
    width: 100%;
    height: 68px;
    object-fit: contain;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.92);
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.service-package {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px;
    border-top: 3px solid rgba(59,220,255,.62);
}

.service-package.featured {
    border-top-color: rgba(0,245,168,.78);
    box-shadow: 0 24px 70px rgba(0,245,168,.08);
}

.service-package small {
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.service-package strong {
    font-size: 1.9rem;
    color: var(--text);
}

.service-package p {
    color: var(--muted);
    line-height: 1.55;
}

.service-flow,
.service-form,
.service-faq {
    margin: 22px 0;
    padding: 24px;
}

.service-flow ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    list-style: none;
}

.service-flow li {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
}

.service-flow li strong {
    color: var(--green);
}

.service-flow li span {
    color: var(--muted);
    line-height: 1.5;
}

.service-form form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--text);
    background: rgba(4,17,28,.82);
    outline: 0;
}

.service-form textarea,
.service-form button,
.service-form .checkline {
    grid-column: 1 / -1;
}

.service-form .checkline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-form .checkline input {
    width: auto;
}

.sslbot {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
}

.sslbot-check {
    display: none;
}

.sslbot:not(.open) .sslbot-panel {
    display: none;
}

.sslbot-launcher {
    width: 66px;
    height: 66px;
    border: 1px solid rgba(0,245,168,.5);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 12px 36px rgba(0,245,168,.28);
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0;
    user-select: none;
}

.sslbot.open .sslbot-launcher {
    transform: scale(.94);
}

.mini-bot {
    position: relative;
    width: 42px;
    height: 34px;
    border-radius: 16px;
    background: #06131d;
}

.mini-bot i {
    position: absolute;
    top: 11px;
    width: 7px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    animation: bot-eye 3s infinite;
}

.mini-bot i:first-child { left: 11px; }
.mini-bot i:nth-child(2) { right: 11px; }
.mini-bot b {
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 16px;
    height: 6px;
    transform: translateX(-50%);
    border-bottom: 2px solid var(--green);
    border-radius: 0 0 20px 20px;
}

.sslbot-panel {
    width: min(380px, calc(100vw - 28px));
    margin-bottom: 12px;
    border: 1px solid rgba(59,220,255,.35);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface2);
    box-shadow: var(--shadow);
}

.sslbot-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}

.sslbot-panel header label,
.sslbot-close {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font: inherit;
}

.bot-face {
    margin: 16px auto 6px;
    transform: scale(.58);
    transform-origin: center;
}

.bot-face .cheek {
    position: absolute;
    top: 91px;
    z-index: 2;
    width: 18px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,245,168,.22);
    box-shadow: 0 0 14px rgba(0,245,168,.22);
    opacity: .75;
}

.bot-face .cheek.left { left: 48px; }
.bot-face .cheek.right { right: 48px; }

.bot-face .spark {
    position: absolute;
    top: 14px;
    right: 28px;
    z-index: 3;
    width: 12px;
    height: 12px;
    opacity: 0;
    transform: scale(.6);
    background: var(--green);
    clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
    filter: drop-shadow(0 0 10px var(--green));
}

.bot-face .hat {
    position: absolute;
    left: 50%;
    top: -18px;
    z-index: 5;
    width: 92px;
    height: 34px;
    transform: translateX(-50%) rotate(-3deg);
    border-radius: 18px 18px 10px 10px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0,245,168,.95), rgba(59,220,255,.9));
    box-shadow: 0 12px 26px rgba(0,245,168,.18);
}

.bot-face .hat::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 112px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255,255,255,.92);
}

.bot-face .hat::after {
    content: "SSL";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #031119;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: 0;
    font-style: normal;
}

.bot-messages {
    max-height: 230px;
    overflow: auto;
    display: grid;
    gap: 10px;
    padding: 14px;
}

.bot-message,
.user-message {
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    line-height: 1.45;
    font-size: .92rem;
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.bot-message { background: rgba(59,220,255,.1); border: 1px solid rgba(59,220,255,.18); }
.user-message { justify-self: end; background: rgba(0,245,168,.12); border: 1px solid rgba(0,245,168,.2); }
.bot-message.is-thinking { color: var(--cyan); }

.bot-form {
    display: grid;
    grid-template-columns: 1fr auto;
    border-top: 1px solid var(--line);
}

.bot-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 13px;
}

.bot-form button {
    border: 0;
    padding: 0 14px;
    cursor: pointer;
    font-weight: 900;
    color: #031119;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.sslbot.thinking .bot-face,
.sslbot.thinking .mini-bot,
.sslbot.talking .bot-face {
    animation: bot-think .7s ease-in-out infinite;
}

.sslbot.happy .eye,
.sslbot.happy .mini-bot i,
.sslbot.found .eye,
.sslbot.found .mini-bot i,
.sslbot.celebrate .eye,
.sslbot.celebrate .mini-bot i {
    background: var(--green);
    box-shadow: 0 0 24px var(--green);
}

.sslbot.warn .eye,
.sslbot.warn .mini-bot i {
    background: var(--amber);
    box-shadow: 0 0 24px var(--amber);
}

.sslbot.error .eye,
.sslbot.error .mini-bot i {
    background: #ff6375;
    box-shadow: 0 0 24px #ff6375;
}

.sslbot.wink .eye.right { transform: scaleY(.14); }
.sslbot.sleepy .eye { height: 7px; top: 78px; border-radius: 999px; }
.sslbot.curious .bot-face { transform: scale(.58) rotate(-4deg); }
.sslbot.surprised .mouth {
    top: 96px;
    width: 22px;
    height: 22px;
    border: 4px solid var(--green);
    border-radius: 50%;
}
.sslbot.focused .eye { height: 10px; top: 75px; border-radius: 999px; background: var(--amber); }
.sslbot.scan .eye { animation: bot-scan-eye .75s linear infinite; }
.sslbot.proud .bot-face { transform: scale(.6) translateY(-3px); }
.sslbot.proud .mouth { width: 54px; border-bottom-width: 7px; }
.sslbot.sparkle .spark { animation: bot-spark .9s ease-in-out infinite; }

.sslbot.happy .mouth,
.sslbot.found .mouth,
.sslbot.celebrate .mouth {
    width: 46px;
    height: 18px;
    border-bottom-width: 6px;
}

.sslbot.talking .mouth {
    animation: bot-talk .36s ease-in-out infinite;
}

.sslbot.found .bot-face::after,
.sslbot.found .mini-bot::after,
.sslbot.celebrate .bot-face::after,
.sslbot.celebrate .mini-bot::after {
    content: "Buldum";
    position: absolute;
    right: -18px;
    top: -12px;
    z-index: 4;
    padding: 5px 8px;
    border-radius: 999px;
    color: #031119;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-size: .68rem;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0,245,168,.28);
    animation: bot-pop 1.3s ease both;
}

.sslbot.celebrate .bot-face::after,
.sslbot.celebrate .mini-bot::after {
    content: "Harika";
}

.sslbot.warn .bot-face::after,
.sslbot.error .bot-face::after {
    position: absolute;
    right: -18px;
    top: -12px;
    z-index: 4;
    padding: 5px 8px;
    border-radius: 999px;
    color: #031119;
    font-size: .68rem;
    font-weight: 900;
    animation: bot-pop 1.3s ease both;
}

.sslbot.warn .bot-face::after {
    content: "Dikkat";
    background: linear-gradient(135deg, var(--amber), #ffe2a0);
}

.sslbot.error .bot-face::after {
    content: "Sorun var";
    color: #fff;
    background: linear-gradient(135deg, #ff6375, #a91430);
}

.sslbot.celebrate .spark,
.sslbot.found .spark,
.sslbot.happy .spark {
    animation: bot-spark 1.15s ease both;
}

.sslbot.brand-hat .hat,
.sslbot.flag-tr .hat,
.sslbot.flag-us .hat,
.sslbot.flag-de .hat,
.sslbot.flag-gb .hat,
.sslbot.flag-fr .hat,
.sslbot.flag-nl .hat {
    opacity: 1;
    animation: hat-bob 1.4s ease both;
}

.sslbot.brand-hat .hat::after { content: "CA"; }
.sslbot.flag-tr .hat { background: linear-gradient(135deg, #e30a17 0 70%, #fff 70%); }
.sslbot.flag-tr .hat::after { content: "TR"; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.sslbot.flag-us .hat { background: linear-gradient(#b22234 0 16%, #fff 16% 32%, #b22234 32% 48%, #fff 48% 64%, #3c3b6e 64%); }
.sslbot.flag-us .hat::after { content: "US"; color: #fff; }
.sslbot.flag-de .hat { background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%); }
.sslbot.flag-de .hat::after { content: "DE"; color: #fff; }
.sslbot.flag-gb .hat { background: linear-gradient(135deg, #012169 0 36%, #fff 36% 45%, #c8102e 45% 56%, #fff 56% 65%, #012169 65%); }
.sslbot.flag-gb .hat::after { content: "UK"; color: #fff; }
.sslbot.flag-fr .hat { background: linear-gradient(90deg, #0055a4 0 33%, #fff 33% 66%, #ef4135 66%); }
.sslbot.flag-fr .hat::after { content: "FR"; color: #031119; }
.sslbot.flag-nl .hat { background: linear-gradient(#ae1c28 0 33%, #fff 33% 66%, #21468b 66%); }
.sslbot.flag-nl .hat::after { content: "NL"; color: #031119; }

.sslbot.found .bot-face,
.sslbot.happy .bot-face {
    box-shadow: inset 0 -18px 32px rgba(0,0,0,.12), 0 28px 70px rgba(0,245,168,.28);
}

@keyframes bot-eye {
    0%, 90%, 100% { transform: scaleY(1); }
    94% { transform: scaleY(.16); }
}

@keyframes bot-smile {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.25); }
}

@keyframes bot-talk {
    0%, 100% { height: 7px; width: 30px; border-bottom-width: 4px; }
    50% { height: 18px; width: 42px; border-bottom-width: 6px; }
}

@keyframes bot-scan-eye {
    0%, 100% { box-shadow: 0 0 12px var(--cyan); transform: translateX(-2px); }
    50% { box-shadow: 0 0 30px var(--green); transform: translateX(2px); }
}

@keyframes hat-bob {
    0% { opacity: 0; transform: translateX(-50%) translateY(8px) rotate(-9deg); }
    30%, 100% { opacity: 1; transform: translateX(-50%) translateY(0) rotate(-3deg); }
}

@keyframes bot-think {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes bot-pop {
    0% { opacity: 0; transform: translateY(8px) scale(.84); }
    18%, 80% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-6px) scale(.96); }
}

@keyframes bot-spark {
    0% { opacity: 0; transform: translateY(6px) scale(.3) rotate(0deg); }
    30%, 70% { opacity: 1; transform: translateY(0) scale(1.2) rotate(18deg); }
    100% { opacity: 0; transform: translateY(-8px) scale(.7) rotate(42deg); }
}

@keyframes bot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bubble-in {
    from { opacity: 0; transform: translateY(8px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ad-scan {
    to { transform: rotate(1turn); }
}

@keyframes logo-shine {
    0%, 44%, 100% { transform: translateX(-110%) rotate(18deg); opacity: 0; }
    56% { transform: translateX(110%) rotate(18deg); opacity: 1; }
}

@media (max-width: 920px) {
    .site-header {
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .nav-toggle {
        display: grid;
        order: 2;
        margin-left: auto;
    }
    .theme-toggle {
        order: 3;
        flex: 0 0 auto;
    }
    .site-header nav {
        display: none;
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        width: auto;
        max-height: min(70vh, 520px);
        overflow: auto;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(8, 20, 31, .98);
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
        color: var(--text);
        z-index: 80;
    }
    .site-header.nav-open nav {
        display: grid;
    }
    .site-header nav a {
        padding: 13px 14px;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.06);
    }
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 36px;
    }
    .hero > *,
    .result-stage,
    .content-band,
    .home-faq-band,
    .service-page {
        min-width: 0;
    }
    .service-hero,
    .service-packages,
    .service-flow ol {
        grid-template-columns: 1fr;
    }
    .logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-robot {
        min-height: 360px;
    }
    .audit-card.top { top: 4%; right: 0; }
    .audit-card.bottom { bottom: 0; left: 0; }
    .hero-bubble { position: relative; top: auto; left: auto; margin-bottom: 18px; }
    .kpi-grid,
    .analysis-grid,
    .feature-grid,
    .cert-map-grid,
    .faq-grid,
    .seo-grid,
    .seo-guide ol {
        grid-template-columns: 1fr;
    }
    .countdown {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .timeline {
        grid-template-columns: 1fr;
    }
    .vuln-row {
        grid-template-columns: 1fr auto;
    }
    .vuln-row p {
        grid-column: 1 / -1;
    }
    .site-footer {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .brand img { width: 154px; }
    .hero h1 { font-size: 3rem; }
    .home-faq-band {
        width: min(100% - 22px, 1280px);
    }
    .faq-card summary {
        min-height: auto;
    }
    .scan-row {
        grid-template-columns: 1fr;
    }
    .scan-row span {
        padding: 12px 12px 0;
    }
    .scan-row button {
        width: 100%;
    }
    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ad-rail,
    .site-footer {
        width: min(100% - 22px, 1280px);
    }
    .site-footer {
        padding: 18px;
    }
    .site-footer nav {
        grid-template-columns: 1fr 1fr;
    }
    .service-page {
        width: min(100% - 22px, 1180px);
    }
    .service-hero,
    .service-flow,
    .service-form,
    .service-faq {
        padding: 18px;
    }
    .service-form form {
        grid-template-columns: 1fr;
    }
    .ca-brand-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .ca-logo,
    .ca-logo-frame {
        width: 100%;
    }
    .ca-logo img {
        max-width: 100%;
        width: 100%;
    }
    .cert-map-section {
        width: min(100% - 22px, 1180px);
    }
    .checker_certs td.cert {
        width: 92px;
    }
    .checker_certs {
        min-width: 640px;
    }
    .sslbot {
        right: 12px;
        bottom: 12px;
    }
}
