:root {
    --bg: #08111f;
    --bg-2: #0c1829;
    --bg-3: #102033;
    --line: rgba(148, 178, 210, 0.16);
    --text: #e8eef7;
    --muted: #93a4bb;
    --mint: #00c9a7;
    --mint-2: #14e0bb;
    --white: #ffffff;
    --font: "Manrope", system-ui, sans-serif;
    --display: "Space Grotesk", system-ui, sans-serif;
    --wrap: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}
a:visited { color: inherit; }

img { display: block; max-width: 100%; }

.brand-icon {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    display: inline-block !important;
    flex-shrink: 0;
}

.wrap {
    width: min(100% - 2rem, var(--wrap));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(8, 17, 31, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.header-row {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
    color: var(--white) !important;
}

.brand-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.main-nav > a {
    color: var(--muted) !important;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color .2s;
}

.main-nav > a:hover { color: var(--white) !important; }
.main-nav .btn { color: #04251f !important; }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
    min-width: 36px;
    padding: 0.28rem 0.55rem;
    border-radius: 7px;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    color: var(--muted) !important;
    text-align: center;
    text-decoration: none !important;
    transition: color .2s, background .2s;
}

.lang-btn:hover {
    color: var(--white) !important;
}

.lang-btn.is-active {
    background: rgba(0, 201, 167, 0.18);
    color: #7dffd8 !important;
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.menu-btn span {
    width: 16px;
    height: 2px;
    background: var(--text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid transparent;
    padding: .7rem 1.1rem;
    transition: .2s ease;
    cursor: pointer;
}
.btn-solid {
    background: linear-gradient(135deg, var(--mint), #00b894);
    color: #04251f !important;
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.25);
}
.btn-solid:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--mint-2), var(--mint));
}
.btn-danger {
    background: linear-gradient(135deg, #ff4d4d, #e63946);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.28);
    border: none;
}
.btn-danger:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ff6666, #ff4d4d);
}
.btn-line {
    background: rgba(255,255,255,0.03);
    border-color: var(--line);
    color: var(--white) !important;
}
.btn-line:hover {
    border-color: rgba(0, 201, 167, 0.5);
    color: var(--mint) !important;
}
.btn-sm { padding: .5rem .85rem; font-size: .8rem; border-radius: 10px; }
.btn-lg { padding: .9rem 1.35rem; font-size: .95rem; }
.btn-full { width: 100%; }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 201, 167, 0.18), transparent 32%),
        radial-gradient(circle at 10% 80%, rgba(56, 120, 210, 0.16), transparent 28%),
        linear-gradient(160deg, #08111f 0%, #0b1730 48%, #08111f 100%);
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .45;
    mask-image: radial-gradient(circle at 70% 40%, #000 10%, transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
    padding: 4.5rem 0;
}

.brand-hero {
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: .95;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.35;
    color: var(--mint);
    max-width: 22ch;
    margin-bottom: 1rem;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 34rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.75rem;
}

.hero-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.radar {
    position: absolute;
    width: min(100%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,201,167,0.12), transparent 60%);
}

.ring {
    position: absolute;
    inset: 0;
    margin: auto;
    border: 1px solid rgba(0, 201, 167, 0.28);
    border-radius: 50%;
}
.r1 { width: 38%; height: 38%; }
.r2 { width: 64%; height: 64%; }
.r3 { width: 92%; height: 92%; }

.beam {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(0,201,167,0.35), transparent 28%);
    animation: spin 6s linear infinite;
    mask-image: radial-gradient(circle, transparent 28%, #000 29%);
}

.core {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 8px rgba(0,201,167,0.15), 0 0 40px rgba(0,201,167,0.55);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-panel {
    position: relative;
    z-index: 2;
    width: min(100%, 280px);
    margin-top: 220px;
    background: rgba(12, 24, 41, 0.88);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    animation: floatUp .8s ease both;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}
.panel-row:last-child { border-bottom: 0; }
.panel-row span { color: var(--muted); }
.panel-row strong { color: var(--mint); font-family: var(--display); letter-spacing: -0.02em; }

@keyframes floatUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

/* Blocks */
.block { padding: 4.5rem 0; }
.block-alt {
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border-block: 1px solid var(--line);
}

.block-head { max-width: 40rem; margin-bottom: 2rem; }
.block-head h2,
.page-top h1,
.cta h2,
.h-sec {
    font-family: var(--display);
    letter-spacing: -0.03em;
    color: var(--white);
}

.block-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: .45rem 0 .7rem;
}
.block-head p { color: var(--muted); }

.tag {
    display: inline-block;
    color: var(--mint);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(16,32,51,0.95), rgba(12,24,41,0.9));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.35rem;
    transition: .25s ease;
}

.service-card:hover {
    border-color: rgba(0, 201, 167, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.service-top {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .85rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: .28rem .55rem;
    border-radius: 999px;
    background: rgba(0, 201, 167, 0.12);
    color: var(--mint);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.pill-mute {
    background: rgba(255,255,255,0.05);
    color: var(--muted);
}

.service-card h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: .45rem;
}
.service-card h3 a { color: var(--white) !important; }
.service-card h3 a:hover { color: var(--mint) !important; }
.service-card > p {
    color: var(--muted);
    font-size: .92rem;
    min-height: 2.8em;
    margin-bottom: 1.1rem;
}

.service-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.price {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--white);
}
.price small {
    display: block;
    margin-top: .1rem;
    font-family: var(--font);
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
}
.price.big { font-size: 2rem; margin-bottom: .6rem; }

.row-actions { display: flex; gap: .4rem; }

.center-link {
    margin-top: 1.5rem;
    text-align: center;
}
.center-link a {
    color: var(--mint) !important;
    font-weight: 700;
}

/* Trust */
.trust-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}
.trust-grid > div:first-child h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-top: .5rem;
    color: var(--white);
}
.trust-list { display: grid; gap: .9rem; }
.trust-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: .9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}
.trust-item strong {
    font-family: var(--display);
    color: var(--mint);
    font-size: 1.1rem;
}
.trust-item h3 {
    font-family: var(--display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: .25rem;
}
.trust-item p { color: var(--muted); font-size: .92rem; }

/* CTA */
.cta { padding: 2rem 0 4.5rem; }
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.6rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 201, 167, 0.28);
    background:
        radial-gradient(circle at 100% 0%, rgba(0,201,167,0.18), transparent 40%),
        var(--bg-3);
}
.cta-box h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    margin-bottom: .3rem;
}
.cta-box p { color: var(--muted); }

/* Page */
.page-top {
    padding: 3.25rem 0 2.25rem;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 0%, rgba(0,201,167,0.12), transparent 42%),
        var(--bg);
    text-align: center;
}
.page-top h1 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin: .5rem 0 .7rem;
    color: var(--white);
    letter-spacing: -0.03em;
}
.page-intro,
.quote-hero {
    max-width: 40rem;
    margin-inline: auto;
}
.page-top .lead {
    margin-inline: auto;
    color: var(--muted);
    max-width: 36rem;
}
.page-top .slogan-line {
    color: var(--mint) !important;
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    letter-spacing: -0.02em;
}
.js-slogan {
    transition: opacity 0.28s ease;
    display: block;
}
.js-slogan.is-fading {
    opacity: 0;
}
.hero-copy h1.js-slogan {
    transition: opacity 0.28s ease;
}
.cta-box h2.js-slogan,
.page-top .slogan-line.js-slogan {
    min-height: 2.7em;
}
.page-top .muted-lead {
    margin-top: .55rem;
    font-size: .98rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 1.5rem;
    align-items: start;
}
.h-sec {
    font-size: 1.25rem;
    margin: 0 0 .8rem;
}
.h-sec + .h-sec, .prose + .h-sec { margin-top: 1.8rem; }
.prose { color: var(--muted); line-height: 1.8; }

.check-list {
    list-style: none;
    display: grid;
    gap: .55rem;
}
.check-list li {
    position: relative;
    padding: .7rem .8rem .7rem 2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: .75rem;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
}

.side-box {
    position: sticky;
    top: 96px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.25rem;
    background: var(--bg-3);
}
.side-box .btn + .btn { margin-top: .5rem; }
.meta { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }

/* Forms */
.form-container {
    max-width: 720px;
    margin: 0 auto;
}
.form {
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    width: 100%;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    margin-bottom: .35rem;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 600;
}
.form-consent {
    display: flex !important;
    align-items: flex-start;
    gap: .55rem;
    color: var(--muted) !important;
    font-size: .82rem !important;
    font-weight: 500 !important;
    line-height: 1.45;
    cursor: pointer;
}
.form-consent-wrap {
    margin-bottom: 1.1rem !important;
    padding: .85rem .95rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 201, 167, 0.28);
    background: rgba(0, 201, 167, 0.07);
}
.form-consent input {
    margin-top: .2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    accent-color: #00c9a7;
}
.form-consent a {
    color: #7dffd8;
    text-decoration: underline;
}
.form-control {
    width: 100%;
    padding: .75rem .9rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    font: inherit;
}
.form-control:focus {
    outline: none;
    border-color: rgba(0, 201, 167, 0.55);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 1.25rem;
    align-items: start;
}
.contact-aside {
    display: grid;
    gap: .75rem;
}
.info-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-3);
    padding: 1.05rem 1.15rem;
}
.info-label {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: .35rem;
}
.info-card a,
.info-card p {
    color: var(--white) !important;
    font-weight: 600;
    font-size: .98rem;
    margin: 0;
}
.info-card a:hover { color: var(--mint) !important; }
.info-note {
    color: var(--muted);
    font-size: .88rem;
    padding: .35rem .2rem;
}
.contact-form { margin: 0; }

.alert {
    padding: .85rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: .9rem;
}
.alert-success {
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.35);
    color: var(--mint);
}
.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
}

/* Toast bildirimleri */
.toast {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    margin: 0 auto 1.25rem;
    max-width: 720px;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--bg-3);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
    animation: toastIn .35s ease both;
}
.toast-success {
    border-color: rgba(0,201,167,.4);
    background: linear-gradient(135deg, rgba(0,201,167,.14), rgba(12,24,41,.95));
}
.toast-error {
    border-color: rgba(248,113,113,.4);
    background: linear-gradient(135deg, rgba(248,113,113,.12), rgba(12,24,41,.95));
}
.toast-warning {
    border-color: rgba(210,153,34,.4);
    background: linear-gradient(135deg, rgba(210,153,34,.12), rgba(12,24,41,.95));
}
.toast-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 800;
    background: rgba(255,255,255,.06);
}
.toast-success .toast-icon {
    background: rgba(0,201,167,.2);
    color: var(--mint);
}
.toast-error .toast-icon {
    background: rgba(248,113,113,.2);
    color: #f87171;
}
.toast-body {
    flex: 1;
    min-width: 0;
}
.toast-body strong {
    display: block;
    color: var(--white);
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: -0.02em;
    margin-bottom: .2rem;
}
.toast-body p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}
.toast-close {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: .1rem .25rem;
}
.toast-close:hover { color: var(--white); }

.toast-stack {
    position: fixed;
    top: 5.5rem;
    right: 1rem;
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    max-width: min(92vw, 380px);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    background: #050d18;
    padding: 3rem 0 1.25rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-text {
    margin-top: .9rem;
    color: var(--muted);
    max-width: 32ch;
    font-size: .92rem;
}
.site-footer h4 {
    font-family: var(--display);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
    color: var(--white);
}
.site-footer a, .site-footer p {
    display: block;
    color: var(--muted) !important;
    margin-bottom: .4rem;
    font-size: .92rem;
}
.site-footer a:hover { color: var(--mint) !important; }
.footer-copy {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    color: var(--muted);
    font-size: .8rem;
}

.error-page { text-align: center; padding: 6rem 0; }
.error-page h1 {
    font-family: var(--display);
    font-size: 5rem;
    color: var(--mint);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.testimonial-card {
    margin: 0;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-3);
}
.testimonial-card p {
    color: var(--text);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.testimonial-card footer {
    display: grid;
    gap: .15rem;
}
.testimonial-card strong { color: var(--white); font-family: var(--display); }
.testimonial-card span { color: var(--muted); font-size: .85rem; }

.faq-list { display: grid; gap: .75rem; max-width: 48rem; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--bg-3);
    padding: .15rem 1rem;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 0;
    font-weight: 700;
    color: var(--white);
    font-family: var(--display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.prose {
    max-width: 46rem;
    line-height: 1.7;
    color: var(--muted);
}
.prose h2, .prose h3 { color: var(--white); font-family: var(--display); margin: 1.5rem 0 .6rem; }
.prose p { margin: 0 0 1rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; }

.attack-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 70;
    display: flex;
    align-items: center;
}
.attack-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 1rem .65rem;
    border: 0;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(165deg, #ff6b6b 0%, #c1121f 55%, #7f1010 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: -10px 10px 34px rgba(193, 18, 31, 0.35);
    font-family: var(--display);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.15;
    width: 3.4rem;
    position: relative;
    transition: transform .2s ease, filter .2s ease;
}
.attack-tab:hover {
    transform: translateX(-2px);
    filter: brightness(1.05);
}
.attack-tab-glow {
    position: absolute;
    inset: -1px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(165deg, rgba(255,255,255,.25), transparent 40%);
    pointer-events: none;
}
.attack-tab-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 18px 0 0 18px;
    border: 2px solid rgba(255, 107, 107, 0.55);
    animation: attackPulse 2.4s ease-out infinite;
    pointer-events: none;
}
.attack-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.attack-tab-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.attack-backdrop {
    display: none;
}
.attack-panel {
    position: absolute;
    right: calc(100% + .55rem);
    top: 50%;
    width: min(calc(100vw - 5rem), 400px);
    max-height: min(85dvh, 680px);
    background: #0a1322;
    border: 1px solid rgba(255, 107, 107, 0.22);
    border-radius: 18px 0 0 18px;
    box-shadow: -16px 12px 50px rgba(0, 0, 0, 0.45);
    z-index: 90;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(16px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.attack-panel.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}
.attack-panel-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.attack-panel-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 77, 77, 0.28), transparent 42%),
        radial-gradient(circle at 10% 90%, rgba(0, 201, 167, 0.12), transparent 35%),
        linear-gradient(180deg, #16243a 0%, #0d1728 100%);
}
.attack-panel-hero-content {
    position: relative;
    padding: 1.15rem 1.25rem 1.25rem;
}
.attack-panel-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .85rem;
}
.attack-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 77, 77, 0.16);
    color: #ff8f8f;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 107, 0.25);
}
.attack-panel-tag::before {
    content: '';
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 10px #ff4d4d;
    animation: attackBlink 1.4s ease-in-out infinite;
}
.attack-panel-close {
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
}
.attack-panel-close:hover {
    background: rgba(255, 255, 255, 0.12);
}
.attack-panel-hero-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
    color: #ffb4b4;
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.22);
}
.attack-panel-head h2,
.attack-panel-hero-content h2 {
    margin: 0 0 .45rem;
    font-family: var(--display);
    font-size: 1.45rem;
    color: var(--white);
    letter-spacing: -.02em;
}
.attack-panel-lead {
    margin: 0 0 .95rem;
    color: #a8b8d0;
    font-size: .88rem;
    line-height: 1.55;
}
.attack-phone-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 107, 0.22);
    color: var(--white);
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease;
}
.attack-phone-bar:hover {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.38);
    color: #fff;
}
.attack-phone-bar-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ff9d9d;
    font-weight: 700;
}
.attack-phone-bar strong {
    font-family: var(--display);
    font-size: .98rem;
}
.attack-panel-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.25rem 1.35rem;
}
.attack-errors {
    margin-bottom: 1rem;
    padding: .75rem .85rem;
    border-radius: 12px;
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.25);
}
.attack-errors p {
    margin: 0;
    color: #ffb4b4;
    font-size: .86rem;
}
.attack-errors p + p {
    margin-top: .35rem;
}
.attack-form-section + .attack-form-section {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.attack-form-section h3 {
    margin: 0 0 .85rem;
    font-family: var(--display);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8ea3c0;
}
.attack-form .form-group {
    margin-bottom: .85rem;
}
.attack-form .form-group label {
    font-size: .78rem;
    color: #9db0cb;
    margin-bottom: .35rem;
}
.attack-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    color: var(--white) !important;
    padding: .72rem .85rem !important;
    font-size: .92rem !important;
}
.attack-input:focus {
    border-color: rgba(255, 107, 107, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.12) !important;
}
.attack-input::placeholder {
    color: #6f819c;
}
.attack-form-row {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.attack-type-grid,
.attack-urgency-grid {
    display: grid;
    gap: .55rem;
}
.attack-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.attack-urgency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.attack-type-chip,
.attack-urgency-chip {
    position: relative;
    cursor: pointer;
}
.attack-type-chip input,
.attack-urgency-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.attack-type-chip span,
.attack-urgency-chip span {
    display: block;
    padding: .62rem .7rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #c5d3e8;
    font-size: .78rem;
    line-height: 1.35;
    text-align: center;
    transition: .18s ease;
}
.attack-type-chip input:checked + span,
.attack-urgency-chip input:checked + span {
    border-color: rgba(255, 107, 107, 0.45);
    background: rgba(255, 77, 77, 0.12);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 107, 107, 0.15);
}
.attack-urgency-critical input:checked + span {
    border-color: rgba(255, 77, 77, 0.55);
    background: rgba(255, 77, 77, 0.16);
}
.attack-urgency-high input:checked + span {
    border-color: rgba(255, 170, 77, 0.45);
    background: rgba(255, 170, 77, 0.12);
}
.attack-urgency-medium input:checked + span {
    border-color: rgba(88, 166, 255, 0.45);
    background: rgba(88, 166, 255, 0.12);
}
.attack-form-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.attack-consent {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    font-size: .78rem;
    line-height: 1.45;
    color: #93a6c0;
    margin-bottom: .85rem;
}
.attack-consent input {
    margin-top: .15rem;
}
.attack-consent a {
    color: #ff9d9d;
}
.attack-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
}
.attack-widget.is-open .attack-tab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    padding: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .attack-widget {
        top: auto;
        bottom: 5.5rem;
        transform: none;
    }
    .attack-panel {
        position: fixed;
        right: .75rem;
        left: .75rem;
        top: auto;
        bottom: calc(5.5rem + .75rem);
        width: auto;
        max-height: min(70dvh, 560px);
        border-radius: 18px;
        transform: translateY(12px);
    }
    .attack-panel.is-visible {
        transform: translateY(0);
    }
    .attack-form-row {
        grid-template-columns: 1fr;
    }
    .attack-type-grid {
        grid-template-columns: 1fr;
    }
    .attack-urgency-grid {
        grid-template-columns: 1fr;
    }
    .attack-tab {
        width: 3rem;
        padding: .85rem .5rem;
    }
}

@keyframes attackPulse {
    0% { transform: scale(1); opacity: 0.85; }
    70% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1.1); opacity: 0; }
}
@keyframes attackBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

.whatsapp-fab {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 50;
    background: #25d366;
    color: #04210f !important;
    font-weight: 800;
    text-decoration: none !important;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    font-family: var(--display);
    font-size: .9rem;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.server-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18,32,51,.9), rgba(12,24,41,.95));
    padding: 1.35rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.server-card.is-featured {
    border-color: rgba(0,201,167,.45);
    box-shadow: 0 0 0 1px rgba(0,201,167,.15), 0 18px 40px rgba(0,0,0,.25);
}
.server-badge {
    position: absolute;
    top: .85rem;
    right: .85rem;
    background: rgba(0,201,167,.18);
    color: var(--mint);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .55rem;
    border-radius: 999px;
}
.server-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: -.02em;
}
.server-desc {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
    min-height: 2.8em;
}
.server-price {
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--mint);
    letter-spacing: -.03em;
}
.server-price small {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 600;
}
.server-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .45rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-block: .75rem;
}
.server-specs li {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    font-size: .88rem;
}
.server-specs span { color: var(--muted); }
.server-specs strong { color: var(--white); font-weight: 700; }
.server-features {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
    flex: 1;
}
.server-card .btn { margin-top: .35rem; }

@media (max-width: 960px) {
    .server-grid { grid-template-columns: 1fr; }
    .hero {
        min-height: auto;
        align-items: stretch;
        overflow: visible;
    }
    .hero-grid,
    .service-grid,
    .trust-grid,
    .detail-grid,
    .contact-layout,
    .footer-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        gap: 2rem;
        padding: 2.75rem 0 3rem;
    }
    .hero-visual {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: .5rem 0 1.5rem;
    }
    .radar {
        position: relative;
        width: min(86vw, 340px);
        flex-shrink: 0;
    }
    .hero-panel {
        margin-top: -3.5rem;
        width: min(100%, 280px);
    }
    .cta-box { flex-direction: column; align-items: flex-start; }
    .side-box { position: static; }
}

@media (max-width: 768px) {
    .menu-btn { display: inline-flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #0b1628;
        border-bottom: 1px solid var(--line);
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.is-open { display: flex; }
    .lang-switch {
        width: fit-content;
        margin: 0.25rem 0;
    }
    .form-row { grid-template-columns: 1fr; }
    .brand-hero {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }
    .hero-visual {
        padding-top: .25rem;
    }
    .radar {
        width: min(92vw, 300px);
    }
}
