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

html,
body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0116;
    color: #fff;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

.header {
    padding: 18px 0;
    background: rgba(10, 0, 20, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    justify-self: start;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav a {
    color: #d6d1e0;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff36b6, #9b5cff);
}

.header-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aef7ba;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
    display: inline-block;
    flex-shrink: 0;
}

.user-menu {
    position: relative;
}

.user-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, #d946ef, #7c3aed);
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.4);
}

.dropdown {
    position: absolute;
    right: 0;
    top: 64px;
    min-width: 220px;
    background: #170624;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 120;
}

.dropdown.show {
    display: flex;
}

.dropdown a,
.dropdown-user {
    color: #fff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 90px 0 120px;
    min-height: calc(100vh - 180px);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: #d7d0e5;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ffffff, #d48bff, #8f7dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    max-width: 700px;
    font-size: 21px;
    color: #d1cada;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-links a,
.auth-form button,
.pay-btn,
.big-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 16px;
    background: linear-gradient(90deg, #a855f7, #d946ef, #6366f1);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}

.hero-image img,
.product-card img,
.product-main-image {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.hero-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.page-title {
    margin: 40px 0 30px;
    font-size: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.product-card {
    position: relative;
    display: block;
    max-width: 300px;
    text-decoration: none;
    color: white;
    background: linear-gradient(180deg, #361055, #12021f);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    transition: transform 0.2s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card h2 {
    margin-top: 16px;
    font-size: 34px;
}

.product-card p {
    margin-top: 10px;
    color: #d4c9dd;
}

.safe-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #0e7f2f, #1fc85d);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-transform: lowercase;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.product-price-badge {
    position: absolute;
    top: 58px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(16, 20, 38, 0.92);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.safe-badge.big {
    position: static;
    margin-bottom: 14px;
}

.product-detail-page {
    padding: 40px 0 70px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.45fr 0.78fr;
    gap: 34px;
    align-items: start;
}

.gallery-box {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
}

.product-main-image {
    cursor: zoom-in;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-thumb.active {
    border-color: #d946ef;
}

.product-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-bottom: 18px;
}

.tab-btn {
    background: #253041;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.tab-btn.active {
    background: #ff1b4b;
}

.tab-panel {
    display: none;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 22px;
    color: #ddd;
    line-height: 1.7;
}

.tab-panel.active {
    display: block;
}

.product-right {
    max-width: 470px;
    width: 100%;
    justify-self: end;
    background: linear-gradient(180deg, rgba(42, 13, 71, 0.9), rgba(17, 3, 26, 0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.product-title {
    font-size: 42px;
    margin-top: 14px;
    margin-bottom: 18px;
}

.product-description-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 18px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tariff-box h3 {
    margin-bottom: 16px;
    font-size: 28px;
}

.tariff-switcher {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.tariff-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 16px;
    padding: 16px 10px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.tariff-btn.active {
    background: linear-gradient(90deg, #d946ef, #8b5cf6);
    box-shadow: 0 10px 26px rgba(168, 85, 247, 0.3);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin: 0 auto 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px 18px;
}

.price-box span {
    color: #d2cbe0;
    font-size: 22px;
}

.price-box strong {
    font-size: 34px;
    color: #fff;
}

.big-pay-btn {
    width: 92%;
    margin: 0 0 0 auto;
    transform: translateX(16px);
    padding: 18px;
    font-size: 28px;
    font-weight: 900;
    border-radius: 18px;
}

.auth-page {
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.auth-form {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(180deg, #1d0a2c, #11031a);
    padding: 30px;
    border-radius: 24px;
}

.auth-form h1 {
    margin-bottom: 24px;
}

.auth-form input {
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: white;
}

.messages {
    margin-top: 20px;
}

.message {
    background: rgba(168, 85, 247, 0.15);
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 10px;
}

.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
    padding: 24px 0;
    background: rgba(9, 0, 18, 0.9);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left {
    color: #b7abc7;
}

.footer-right {
    display: flex;
    gap: 18px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 30px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 18px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .logo,
    .nav,
    .header-right {
        justify-self: start;
    }

    .hero,
    .product-layout,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .tariff-switcher {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-box span {
        font-size: 22px;
    }

    .price-box strong {
        font-size: 32px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .subscription-item {
        flex-direction: column;
    }

    .big-pay-btn {
        font-size: 28px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .avatar-crop-body {
        grid-template-columns: 1fr;
    }

    .crop-stage {
        height: 360px;
    }

    .crop-preview-wrap {
        min-height: auto;
    }

}

.profile-page {
    padding: 50px 0 70px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-bottom: 24px;
}

.profile-card {
    background: linear-gradient(180deg, rgba(42, 13, 71, 0.9), rgba(17, 3, 26, 0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.profile-top {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.profile-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d946ef, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.profile-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-form {
    margin-bottom: 18px;
}

.profile-form input,
.profile-form textarea,
.profile-form select {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
}

.profile-form button,
.profile-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 14px;
    background: linear-gradient(90deg, #8b5cf6, #d946ef, #6366f1);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
}

.profile-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 20px 0;
}

.verified {
    color: #4ade80;
    margin-top: 8px;
}

.not-verified {
    color: #f87171;
    margin-top: 8px;
}

.subscriptions-card {
    margin-top: 10px;
}

.subscriptions-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.subscription-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.header-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.header-avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.avatar-upload-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.avatar-clickable {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.profile-avatar-img,
.profile-avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-placeholder {
    background: linear-gradient(135deg, #d946ef, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transition: 0.2s ease;
}

.avatar-clickable:hover .avatar-overlay {
    opacity: 1;
}

.avatar-save-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(90deg, #8b5cf6, #d946ef, #6366f1);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
}

.hidden {
    display: none !important;
}

.avatar-save-btn.hidden,
.hidden {
    display: none !important;
}

.avatar-crop-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 500;
    padding: 20px;
}

.avatar-crop-modal.show {
    display: flex;
}

.avatar-crop-box {
    width: min(980px, 96vw);
    background: #160521;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.avatar-crop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.avatar-crop-header h3 {
    margin: 0;
}

.avatar-crop-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.avatar-crop-body {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    padding: 20px;
    align-items: start;
}

.crop-stage {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
}

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

.crop-preview-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    min-height: 460px;
    padding: 20px;
}

.crop-preview-title {
    margin-bottom: 18px;
    font-weight: 800;
    color: #d7d0e5;
}

.crop-preview-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 0 8px rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.04);
}

.crop-preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-crop-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.header-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.requirements-grid {
    display: grid;
    gap: 14px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.requirement-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.requirement-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.requirement-value {
    font-size: 18px;
    color: #d6cede;
}

.video-card {
    width: 100%;
    max-width: 560px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.video-card iframe {
    width: 100%;
    height: 315px;
    display: block;
}

.safe-badge-wrap {
    margin-bottom: 14px;
}

.safe-badge-note {
    margin-top: 10px;
    color: #8e8e98;
    font-size: 14px;
    font-weight: 600;
}

.password-field {
    position: relative;
    margin-bottom: 16px;
}

.password-field input {
    width: 100%;
    margin-bottom: 0;
    padding-right: 56px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 32px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #8f86a8;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover {
    color: #fff;
}

.auth-extra-links {
    display: flex;
    justify-content: flex-end;
    margin-top: -4px;
    margin-bottom: 16px;
}

.forgot-password-link {
    color: #cda8ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.forgot-password-link:hover {
    color: #fff;
    text-decoration: underline;
}


.guide-page {
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), transparent 35%),
        radial-gradient(circle at top right, rgba(217, 70, 239, 0.14), transparent 30%),
        linear-gradient(180deg, #090114 0%, #12031d 100%);
}

.guide-hero {
    padding: 56px 0 28px;
}

.guide-hero-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(135deg, rgba(34, 17, 61, 0.96), rgba(12, 4, 28, 0.96));
    box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.guide-hero-box::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 60%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22), transparent 70%);
    pointer-events: none;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e9defd;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.guide-hero-box h1 {
    font-size: 54px;
    line-height: 1.06;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ffffff, #dab8ff, #8f95ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-hero-box p {
    max-width: 880px;
    color: #d2c8df;
    font-size: 19px;
    line-height: 1.75;
}

.guide-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.guide-btn:hover {
    transform: translateY(-2px);
}

.guide-btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #8b5cf6, #d946ef, #6366f1);
    box-shadow: 0 14px 34px rgba(139, 92, 246, 0.28);
}

.guide-btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
}

.guide-section {
    padding: 16px 0 58px;
}

.guide-grid {
    display: grid;
    gap: 28px;
}

.guide-step {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(33, 10, 52, 0.96), rgba(13, 4, 24, 0.96));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 16px 42px rgba(0,0,0,0.32);
}

.guide-step-head {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 22px;
}

.guide-step-number {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #d946ef, #7c3aed, #4f46e5);
    box-shadow: 0 14px 34px rgba(168, 85, 247, 0.3);
}

.guide-step h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.guide-step p {
    color: #d5cede;
    line-height: 1.8;
    font-size: 17px;
}

.guide-image-wrap,
.guide-image-grid img {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
}

.guide-image-wrap.single img,
.guide-image-grid img {
    width: 100%;
    display: block;
}

.guide-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.guide-footer-links {
    padding: 0 0 70px;
}

.guide-footer-box {
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(24, 8, 39, 0.96), rgba(10, 3, 21, 0.96));
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.guide-footer-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.guide-footer-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .guide-hero-box {
        padding: 28px;
    }

    .guide-hero-box h1 {
        font-size: 38px;
    }

    .guide-step-head {
        grid-template-columns: 1fr;
    }

    .guide-step-number {
        width: 62px;
        height: 62px;
        font-size: 28px;
        border-radius: 18px;
    }

    .guide-image-grid {
        grid-template-columns: 1fr;
    }
}