/* Shared service page utility */
.support-highlight .support-list span {
    color: var(--text-color);
}

/* Service Details Sidebar (dynamic service details page) */
.service-sidebar-list .service-group {
    margin-bottom: 16px;
}

.service-sidebar-list .service-group-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a8699;
    margin: 0 0 10px;
}

.service-sidebar-list .service-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.service-sidebar-list .service-items li {
    background: #f7f8fb;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.service-sidebar-list .service-items li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #1a1f2c;
}

.service-sidebar-list .service-items li:hover {
    background: #3f5efb;
    transform: translateX(4px);
}

.service-sidebar-list .service-items li:hover a {
    color: #fff;
}

.service-sidebar-list .service-items li.active {
    background: #3f5efb;
}

.service-sidebar-list .service-items li.active a {
    color: #fff;
}

/* Web Development */
.web-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 48px;
    overflow: hidden;
}

.web-hero .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.web-hero h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    margin: 16px 0 12px;
}

.web-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.web-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
}

.web-compare {
    border-radius: 16px;
    background: #f8fafc;
    padding: 24px;
}

.web-compare table {
    width: 100%;
    border-collapse: collapse;
}

.web-compare th,
.web-compare td {
    padding: 12px 10px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.web-compare th {
    text-align: left;
    color: #111827;
}

.web-compare td {
    color: #374151;
}

.web-grid {
    display: grid;
    gap: 18px;
}

.web-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.web-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.web-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.web-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.web-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 8px;
}

.web-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Web and Mobile App Development */
.app-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 48px;
    overflow: hidden;
}

.app-hero .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-hero h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    margin: 16px 0 12px;
}

.app-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.app-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
}

.app-compare {
    border-radius: 16px;
    background: #f8fafc;
    padding: 24px;
}

.app-compare table {
    width: 100%;
    border-collapse: collapse;
}

.app-compare th,
.app-compare td {
    padding: 12px 10px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.app-compare th {
    text-align: left;
    color: #111827;
}

.app-compare td {
    color: #374151;
}

.app-grid {
    display: grid;
    gap: 18px;
}

.app-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.app-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.app-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.app-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.app-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 8px;
}

.app-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    color: #0b0b17;
    transition: all 0.3s ease;
}

.platform-badge:hover {
    border-color: var(--theme);
    background: var(--theme);
    color: #fff;
}

.platform-badge i {
    font-size: 1.5rem;
}

/* Custom Web Systems */
.system-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 48px;
    overflow: hidden;
    position: relative;
}

.system-hero::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 75, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.system-hero .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
}

.system-hero h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    margin: 16px 0 12px;
}

.system-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
}

.system-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.system-grid {
    display: grid;
    gap: 18px;
}

.system-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.system-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.system-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme), var(--theme2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.system-card:hover::before {
    transform: scaleX(1);
}

.system-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.system-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #384BFF15, #384BFF30);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.system-card .icon i {
    font-size: 1.6rem;
    color: var(--theme);
}

.system-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 10px;
}

.system-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.price-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.price-box h3 {
    font-size: 1.3rem;
    color: #0b0b17;
    margin-bottom: 8px;
}

.price-box .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--theme);
    margin: 12px 0;
}

.price-box .period {
    font-size: 1rem;
    color: #6b7280;
}

.price-box p {
    font-size: 0.9rem;
    color: #374151;
    margin: 16px 0 0;
}

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

.feature-item {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    background: #f9fafb;
    transition: background 0.2s ease;
}

.feature-item:hover {
    background: #f3f4f6;
}

.feature-item i {
    color: #6576ff;
    font-size: 1.1rem;
    margin-top: 2px;
}

.feature-item span {
    color: #374151;
    font-size: 0.95rem;
}

.process-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.process-step .number {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme), var(--theme2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step .content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 4px;
}

.process-step .content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    color: #0b0b17;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tech-badge:hover {
    border-color: var(--theme);
    background: var(--theme);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 75, 255, 0.3);
}

.tech-badge i {
    font-size: 1.4rem;
}

/* Business Email */
.email-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 48px;
    overflow: hidden;
}

.email-hero .badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.email-hero h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    margin: 16px 0 12px;
}

.email-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
}

.email-compare {
    border-radius: 16px;
    background: #f8fafc;
    padding: 24px;
}

.email-compare table {
    width: 100%;
    border-collapse: collapse;
}

.email-compare th,
.email-compare td {
    padding: 12px 10px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.email-compare th {
    text-align: left;
    color: #111827;
}

.email-compare td {
    color: #374151;
}

.email-grid {
    display: grid;
    gap: 18px;
}

.email-grid.two-col {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.email-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* IT Support and Consultancy */
.support-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.support-hero .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.support-hero h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 20px 0 16px;
    position: relative;
}

.support-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    position: relative;
}

.support-card-img {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.support-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.support-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.support-card-img .card-body {
    padding: 24px;
}

.support-card-img h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 10px;
}

.support-card-img p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.support-card-img .price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--theme), var(--theme2));
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
}

.content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.content-with-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f615, #3b82f630);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-badge i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f3f4f6;
    transform: translateX(8px);
}

.benefit-item .icon {
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6576ff, #448edd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.benefit-item .text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b0b17;
    margin: 0 0 4px 0;
}

.benefit-item .text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.stats-box {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.stats-box .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--theme);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-box .label {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 600;
}

/* Hardware Supply and Maintenance */
.hardware-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.hardware-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hardware-hero .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
}

.hardware-hero h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 20px 0 16px;
    position: relative;
    z-index: 1;
}

.hardware-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.product-card-img {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #6576ff;
}

.product-card-img .img-wrapper {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-card-img .img-wrapper img {
    width: 100%;
    object-fit: contain;
}

.product-card-img .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-img h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 8px;
}

.product-card-img p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 12px;
    flex: 1;
}

.product-card-img .price-from {
    font-size: 1.3rem;
    font-weight: 800;
    color: #6576ff;
    margin-bottom: 8px;
}

.product-card-img .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6576ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.product-card-img .cta-link:hover {
    gap: 10px;
}

.category-banner {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.category-banner:hover {
    border-color: #6576ff;
    transform: translateX(8px);
}

.category-banner img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.category-banner .content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 8px;
}

.category-banner .content p {
    font-size: 0.95rem;
    color: #6576ff;
    margin: 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    color: #0b0b17;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    border-color: #6576ff;
    background: #6576ff10;
}

.guarantee-badge i {
    font-size: 1.4rem;
    color: #6576ff;
}

.service-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-feature:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-feature .icon {
    min-width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6576ff, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.service-feature .text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b0b17;
    margin: 0 0 6px 0;
}

.service-feature .text p {
    font-size: 0.9rem;
    color: #6576ff;
    margin: 0;
}

/* Network Setup */
.network-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1f2a6d 55%, #273b9a 100%);
    border-radius: 24px;
    color: #fff;
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.network-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.network-hero .badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.network-hero h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 20px 0 16px;
    position: relative;
    z-index: 1;
}

.network-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.network-card-visual {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.network-card-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: #6576ff;
}

.network-card-visual .visual-top {
    background: linear-gradient(135deg, #6576ff15, #6576ff30);
    padding: 32px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.network-card-visual .visual-top i {
    font-size: 3.5rem;
    color: #6576ff;
    margin-bottom: 12px;
}

.network-card-visual .visual-top h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b0b17;
    margin: 0;
}

.network-card-visual .card-body {
    padding: 24px;
}

.network-card-visual .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.network-card-visual .feature-list li {
    padding: 8px 0;
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 8px;
}

.network-card-visual .feature-list li i {
    color: #6576ff;
    margin-top: 2px;
}

.network-card-visual .price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6576ff, #4f46e5);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 12px;
}

.topology-showcase {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.topology-showcase img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-visual {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.step-visual:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.step-visual .step-number {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6576ff, #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.step-visual .step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b0b17;
    margin-bottom: 6px;
}

.step-visual .step-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.security-badge:hover {
    border-color: #6576ff;
    background: #6576ff08;
    transform: translateX(8px);
}

.security-badge .icon {
    min-width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6576ff, #3259b4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

.security-badge .text {
    flex: 1;
}

.security-badge .text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b0b17;
    margin: 0 0 4px 0;
}

.security-badge .text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.image-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

@media (max-width: 991px) {
    .image-content-split {
        grid-template-columns: 1fr;
    }
}

.image-content-split img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
