/* SSL Sertifikası — vm-ssl v2 (Verimek Kurumsal) */
.vm-ssl {
    --vm-ssl-bg: #f1f5f9;
    --vm-ssl-dark: #081131;
    --vm-ssl-blue: #0083ff;
    --vm-ssl-blue-dark: #0066cc;
    --vm-ssl-text: #0f172a;
    --vm-ssl-muted: #64748b;
    --vm-ssl-border: #e2e8f0;
    --vm-ssl-card: #fff;
    --vm-ssl-dv: #0083ff;
    --vm-ssl-ov: #6366f1;
    --vm-ssl-ev: #d97706;
    --vm-ssl-secure: #059669;
    color: var(--vm-ssl-text);
    background: var(--vm-ssl-bg);
}

/* Hero */
.vm-ssl-hero {
    padding: 56px 0 64px;
    background: linear-gradient(128deg, #040a18 0%, #081131 35%, #0c2d5a 72%, #0083ff 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.vm-ssl-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 45% at 90% 12%, rgba(0,131,255,.24) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 5% 90%, rgba(5,150,105,.12) 0%, transparent 50%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 52px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 52px);
    mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
}

.vm-ssl-hero .container { position: relative; z-index: 1; }

.vm-ssl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0,131,255,.18);
    border: 1px solid rgba(0,131,255,.35);
    color: rgba(255,255,255,.92);
    margin-bottom: 14px;
}

.vm-ssl-hero__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 14px;
    color: #fff !important;
    letter-spacing: -.02em;
}

.vm-ssl-hero__title-accent { color: #5ec4ff; }

.vm-ssl-hero__lead {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255,255,255,.82);
    margin: 0 0 20px;
    max-width: 520px;
}

.vm-ssl-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.vm-ssl-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}

.vm-ssl-hero__pill i { color: #5ec4ff; }

.vm-ssl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vm-ssl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.vm-ssl-btn--primary {
    background: var(--vm-ssl-blue);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0,131,255,.32);
}

.vm-ssl-btn--primary:hover {
    background: var(--vm-ssl-blue-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

.vm-ssl-btn--ghost {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.35);
}

.vm-ssl-btn--ghost:hover {
    background: rgba(255,255,255,.1);
    color: #fff !important;
}

.vm-ssl-btn--block { width: 100%; }

/* Browser mockup */
.vm-ssl-browser {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 48px rgba(0,0,0,.25);
}

.vm-ssl-browser__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(0,0,0,.28);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.vm-ssl-browser__dots {
    display: flex;
    gap: 6px;
}

.vm-ssl-browser__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}

.vm-ssl-browser__dots span:nth-child(1) { background: #ff5f57; }
.vm-ssl-browser__dots span:nth-child(2) { background: #febc2e; }
.vm-ssl-browser__dots span:nth-child(3) { background: #28c840; }

.vm-ssl-browser__url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    font-size: .78rem;
    color: rgba(255,255,255,.85);
    min-width: 0;
}

.vm-ssl-browser__url i {
    color: var(--vm-ssl-secure);
    flex-shrink: 0;
}

.vm-ssl-browser__url em {
    font-style: normal;
    color: #5ec4ff;
    font-weight: 600;
}

.vm-ssl-browser__body {
    padding: 28px 24px 32px;
    text-align: center;
}

.vm-ssl-browser__shield {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #059669, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 12px 32px rgba(5,150,105,.35);
    animation: vm-ssl-pulse 3s ease-in-out infinite;
}

@keyframes vm-ssl-pulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(5,150,105,.35); }
    50% { box-shadow: 0 12px 40px rgba(5,150,105,.55); }
}

.vm-ssl-browser__body strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
}

.vm-ssl-browser__body span {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}

.vm-ssl-browser__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.vm-ssl-browser__stat {
    background: rgba(0,0,0,.2);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.vm-ssl-browser__stat b {
    display: block;
    font-size: .95rem;
    color: #fff;
}

.vm-ssl-browser__stat small {
    font-size: .68rem;
    color: rgba(255,255,255,.55);
}

/* Validation guide */
.vm-ssl-section { padding: 56px 0; }
.vm-ssl-section--alt { background: #fff; }

.vm-ssl-section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 36px;
}

.vm-ssl-section-head__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--vm-ssl-blue);
    margin-bottom: 10px;
}

.vm-ssl-section-head h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--vm-ssl-dark);
}

.vm-ssl-section-head p {
    margin: 0;
    color: var(--vm-ssl-muted);
    line-height: 1.6;
    font-size: .95rem;
}

.vm-ssl-val-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.vm-ssl-val {
    background: var(--vm-ssl-card);
    border: 1px solid var(--vm-ssl-border);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.vm-ssl-val::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.vm-ssl-val--dv::before { background: var(--vm-ssl-dv); }
.vm-ssl-val--ov::before { background: var(--vm-ssl-ov); }
.vm-ssl-val--ev::before { background: var(--vm-ssl-ev); }

.vm-ssl-val:hover {
    box-shadow: 0 12px 32px rgba(8,17,49,.08);
    transform: translateY(-2px);
}

.vm-ssl-val__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vm-ssl-val--dv .vm-ssl-val__icon { background: rgba(0,131,255,.1); color: var(--vm-ssl-dv); }
.vm-ssl-val--ov .vm-ssl-val__icon { background: rgba(99,102,241,.1); color: var(--vm-ssl-ov); }
.vm-ssl-val--ev .vm-ssl-val__icon { background: rgba(217,119,6,.12); color: var(--vm-ssl-ev); }

.vm-ssl-val h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--vm-ssl-dark);
}

.vm-ssl-val p {
    margin: 0 0 12px;
    font-size: .85rem;
    color: var(--vm-ssl-muted);
    line-height: 1.55;
}

.vm-ssl-val__time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--vm-ssl-dark);
}

/* Packages */
.vm-ssl-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.vm-ssl-plan {
    background: var(--vm-ssl-card);
    border: 1px solid var(--vm-ssl-border);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    box-shadow: 0 4px 18px rgba(8,17,49,.04);
}

.vm-ssl-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--vm-ssl-dv);
    opacity: .85;
}

.vm-ssl-plan--ov::before { background: var(--vm-ssl-ov); }
.vm-ssl-plan--ev::before { background: var(--vm-ssl-ev); }

.vm-ssl-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(8,17,49,.12);
}

.vm-ssl-plan.is-popular {
    border-color: var(--vm-ssl-blue);
    box-shadow: 0 16px 44px rgba(0,131,255,.16);
    transform: scale(1.02);
    z-index: 2;
}

.vm-ssl-plan.is-popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.vm-ssl-plan__ribbon {
    background: linear-gradient(90deg, #0066cc, #0083ff);
    color: #fff;
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    padding: 7px;
    letter-spacing: .04em;
}

.vm-ssl-plan__head {
    padding: 20px 18px 16px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.vm-ssl-plan__logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin: 0 auto 14px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(8,17,49,.05);
    max-width: 180px;
}

.vm-ssl-plan__logo-box img {
    height: 32px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.vm-ssl-plan__head h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--vm-ssl-dark);
    letter-spacing: -.01em;
}

.vm-ssl-plan__desc {
    margin: 0 0 10px;
    font-size: .78rem;
    line-height: 1.5;
    color: var(--vm-ssl-muted);
    min-height: 2.4em;
}

.vm-ssl-plan__type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.vm-ssl-plan__type--dv { background: rgba(0,131,255,.08); color: var(--vm-ssl-dv); border-color: rgba(0,131,255,.18); }
.vm-ssl-plan__type--ov { background: rgba(99,102,241,.08); color: var(--vm-ssl-ov); border-color: rgba(99,102,241,.18); }
.vm-ssl-plan__type--ev { background: rgba(217,119,6,.1); color: var(--vm-ssl-ev); border-color: rgba(217,119,6,.2); }

.vm-ssl-plan__body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vm-ssl-plan__specs-title {
    margin: 0 0 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vm-ssl-plan__specs {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.vm-ssl-plan__specs li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    margin-bottom: 4px;
    border-radius: 10px;
    font-size: .8rem;
    background: #f8fafc;
    border: 1px solid transparent;
    transition: background .15s, border-color .15s;
}

.vm-ssl-plan__specs li:hover {
    background: #eff6ff;
    border-color: rgba(0,131,255,.12);
}

.vm-ssl-plan__spec-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vm-ssl-blue);
    font-size: .72rem;
    flex-shrink: 0;
}

.vm-ssl-plan__spec-label {
    color: var(--vm-ssl-muted);
    line-height: 1.35;
    min-width: 0;
}

.vm-ssl-plan__spec-value {
    color: var(--vm-ssl-dark);
    font-weight: 700;
    font-size: .78rem;
    text-align: right;
    white-space: nowrap;
}

.vm-ssl-plan__foot {
    padding: 16px 18px 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #eef2f7;
}

.vm-ssl-plan__price {
    text-align: center;
    margin-bottom: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f7;
}

.vm-ssl-plan__price strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--vm-ssl-dark);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.vm-ssl-plan__price small {
    display: block;
    margin-top: 2px;
    font-size: .82rem;
    color: var(--vm-ssl-muted);
    font-weight: 600;
}

.vm-ssl-plan__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 11px;
    background: var(--vm-ssl-blue);
    color: #fff !important;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none !important;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 18px rgba(0,131,255,.25);
}

.vm-ssl-plan__buy:hover {
    background: var(--vm-ssl-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,131,255,.32);
    color: #fff !important;
}

.vm-ssl-plan__buy i { font-size: .78rem; transition: transform .2s; }
.vm-ssl-plan__buy:hover i { transform: translateX(3px); }

.vm-ssl-install-note {
    text-align: center;
    margin-top: 24px;
    font-size: .88rem;
    color: var(--vm-ssl-muted);
}

.vm-ssl-install-note i { color: var(--vm-ssl-blue); margin-right: 6px; }

/* Features */
.vm-ssl-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vm-ssl-feat {
    background: var(--vm-ssl-card);
    border: 1px solid var(--vm-ssl-border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color .2s, box-shadow .2s;
}

.vm-ssl-feat:hover {
    border-color: rgba(0,131,255,.3);
    box-shadow: 0 8px 24px rgba(0,131,255,.08);
}

.vm-ssl-feat__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0,131,255,.1);
    color: var(--vm-ssl-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.vm-ssl-feat h4 {
    margin: 0 0 6px;
    font-size: .95rem;
    font-weight: 800;
    color: var(--vm-ssl-dark);
}

.vm-ssl-feat p {
    margin: 0;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--vm-ssl-muted);
}

/* FAQ */
.vm-ssl-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.vm-ssl-faq-item {
    background: #fff;
    border: 1px solid var(--vm-ssl-border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

.vm-ssl-faq-q {
    padding: 16px 20px;
    font-weight: 700;
    font-size: .92rem;
    color: var(--vm-ssl-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.vm-ssl-faq-q i {
    color: #94a3b8;
    transition: transform .25s;
    flex-shrink: 0;
}

.vm-ssl-faq-item.is-open .vm-ssl-faq-q i {
    transform: rotate(180deg);
    color: var(--vm-ssl-blue);
}

.vm-ssl-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.vm-ssl-faq-item.is-open .vm-ssl-faq-a { max-height: 200px; }

.vm-ssl-faq-a p {
    margin: 0;
    padding: 0 20px 16px;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--vm-ssl-muted);
}

/* CTA */
.vm-ssl-cta {
    padding: 56px 0;
    background: linear-gradient(135deg, #081131 0%, #0c2d5a 55%, #0083ff 100%);
    color: #fff;
    text-align: center;
}

.vm-ssl-cta h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff !important;
}

.vm-ssl-cta p {
    margin: 0 auto 24px;
    max-width: 520px;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
    .vm-ssl-plans { grid-template-columns: repeat(2, 1fr); }
    .vm-ssl-plan.is-popular { transform: none; }
    .vm-ssl-plan.is-popular:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .vm-ssl-hero { padding: 44px 0 52px; }
    .vm-ssl-val-grid,
    .vm-ssl-feat-grid { grid-template-columns: 1fr; }
    .vm-ssl-plans { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .vm-ssl-section { padding: 44px 0; }
}

@media (max-width: 480px) {
    .vm-ssl-browser__stats { grid-template-columns: 1fr; }
}
