        :root {
            --primary-dark: #140c3a;
            --secondary-color: #f9bd06;
            --accent-color: #445375;
            --success-green: #10b981;
            --support-blue: #3b82f6;
        }

        @media(min-width:700px) {
            .side-menu__item { color: #fff !important; }
        }

        /* ========== HERO SECTION - YÖNETİLEN VDS TEMASI ========== */
        .managed-hero {
            background: linear-gradient(135deg, #0f0828 0%, #140c3a 30%, #1a1050 55%, #0f2027 100%);
            min-height: 720px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        /* Animated Support Network Lines */
        .support-network {
            position: absolute;
            inset: 0;
            overflow: hidden;
            opacity: 0.15;
        }

        .network-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, #f9bd06, transparent);
            animation: lineFlow 8s linear infinite;
        }

        .network-line:nth-child(1) { top: 20%; left: -100%; width: 200%; animation-delay: 0s; }
        .network-line:nth-child(2) { top: 40%; left: -100%; width: 200%; animation-delay: 2s; }
        .network-line:nth-child(3) { top: 60%; left: -100%; width: 200%; animation-delay: 4s; }
        .network-line:nth-child(4) { top: 80%; left: -100%; width: 200%; animation-delay: 6s; }

        @keyframes lineFlow {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }

        /* Floating Support Icons */
        .floating-support-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(249, 189, 6, 0.1);
            border: 1px solid rgba(249, 189, 6, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9bd06;
            font-size: 1.2rem;
            animation: supportFloat 6s ease-in-out infinite;
            backdrop-filter: blur(5px);
        }

        .floating-support-icon:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
        .floating-support-icon:nth-child(2) { top: 35%; right: 25%; animation-delay: 1s; }
        .floating-support-icon:nth-child(3) { top: 55%; right: 8%; animation-delay: 2s; }
        .floating-support-icon:nth-child(4) { top: 75%; right: 20%; animation-delay: 3s; }
        .floating-support-icon:nth-child(5) { top: 25%; right: 40%; animation-delay: 1.5s; }

        @keyframes supportFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
            50% { transform: translateY(-15px) rotate(5deg); opacity: 1; }
        }

        /* Glow Effects */
        .hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }

        .hero-glow-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 189, 6, 0.12) 0%, transparent 70%);
            top: -20%;
            right: -15%;
            animation: glowPulse 10s ease-in-out infinite;
        }

        .hero-glow-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(249, 189, 6, 0.1) 0%, transparent 70%);
            bottom: -20%;
            left: -10%;
            animation: glowPulse 12s ease-in-out infinite reverse;
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: heroSlideIn 0.9s ease-out;
        }

        @keyframes heroSlideIn {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Managed Badge */
        .managed-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.15), rgba(249, 189, 6, 0.05));
            border: 1px solid rgba(249, 189, 6, 0.3);
            padding: 10px 22px;
            border-radius: 50px;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .managed-badge i {
            color: #f9bd06;
            font-size: 1.1rem;
        }

        .managed-badge span {
            color: #f9bd06;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.12;
            margin-bottom: 20px;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title .accent {
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        /* Service Pills */
        .service-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .service-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 10px 18px;
            border-radius: 30px;
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .service-pill i {
            color: #f9bd06;
        }

        .service-pill:hover {
            background: rgba(249, 189, 6, 0.1);
            border-color: rgba(249, 189, 6, 0.3);
            transform: translateY(-2px);
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            color: #140c3a;
            padding: 18px 36px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 35px rgba(249, 189, 6, 0.25);
        }

        .hero-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(249, 189, 6, 0.35);
            color: #140c3a;
        }

        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            color: #fff;
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .hero-cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
            color: #fff;
        }

        /* Hero Visual - Support Dashboard */
        .hero-visual {
            position: relative;
            z-index: 10;
            animation: visualSlide 1s ease-out 0.3s backwards;
        }

        @keyframes visualSlide {
            from { opacity: 0; transform: translateX(70px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .dashboard-card {
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f9bd06, #fcd34d);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .dashboard-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(249, 189, 6, 0.3);
        }

        .dashboard-icon i {
            font-size: 1.5rem;
            color: #140c3a;
        }

        .dashboard-info h3 {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .dashboard-info p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin: 0;
        }

        .status-badge {
            margin-left: auto;
            background: rgba(249, 189, 6, 0.15);
            color: #f9bd06;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #f9bd06;
            border-radius: 50%;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .service-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.04);
            padding: 16px 18px;
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: rgba(249, 189, 6, 0.08);
            transform: translateX(6px);
        }

        .service-item-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.15), rgba(249, 189, 6, 0.05));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9bd06;
            font-size: 1rem;
        }

        .service-item-text {
            flex: 1;
        }

        .service-item-text h5 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .service-item-text p {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            margin: 0;
        }

        .service-item-check {
            width: 28px;
            height: 28px;
            background: rgba(249, 189, 6, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9bd06;
            font-size: 12px;
        }

        /* ========== PACKAGES SECTION ========== */
        .packages-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(20, 12, 58, 0.06);
            color: #140c3a;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .section-tag i {
            color: #f9bd06;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #140c3a;
            margin-bottom: 16px;
        }

        .section-desc {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 620px;
            margin: 0 auto;
        }

        /* Package Cards - Premium Design */
        .package-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 32px;
            box-shadow: 0 4px 25px rgba(20, 12, 58, 0.05);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #140c3a, #445375);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(20, 12, 58, 0.12);
            border-color: #f9bd06;
        }

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

        .package-card.featured {
            border-color: #f9bd06;
            box-shadow: 0 10px 40px rgba(249, 189, 6, 0.2);
        }

        .package-card.featured::before {
            background: linear-gradient(90deg, #f9bd06, #fcd34d);
            transform: scaleX(1);
        }

        .package-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            color: #140c3a;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .package-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .package-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.15), rgba(249, 189, 6, 0.05));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .package-icon i {
            font-size: 1.8rem;
            color: #f9bd06;
        }

        .package-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #140c3a;
            margin-bottom: 6px;
        }

        .package-desc {
            color: #64748b;
            font-size: 14px;
        }

        .package-price {
            text-align: center;
            padding: 28px 0;
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            margin-bottom: 28px;
        }

        .price-amount {
            font-size: 3.2rem;
            font-weight: 800;
            color: #140c3a;
        }

        .price-currency {
            font-size: 1.5rem;
            vertical-align: super;
            color: #f9bd06;
        }

        .price-period {
            color: #64748b;
            font-size: 14px;
            margin-top: 4px;
        }

        .package-includes {
            background: rgba(249, 189, 6, 0.08);
            border-radius: 14px;
            padding: 18px;
            margin-bottom: 24px;
            border: 1px solid rgba(249, 189, 6, 0.15);
        }

        .package-includes h6 {
            color: #140c3a;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .package-includes h6 i {
            color: #f9bd06;
        }

        .package-includes ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .package-includes li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #334155;
            font-size: 14px;
            padding: 6px 0;
        }

        .package-includes li i {
            color: #f9bd06;
            font-size: 12px;
        }

        .package-specs {
            list-style: none;
            padding: 0;
            margin: 0 0 28px 0;
            flex-grow: 1;
        }

        .package-specs li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #f8fafc;
            color: #334155;
            font-size: 15px;
        }

        .package-specs li:last-child {
            border-bottom: none;
        }

        .package-specs li i {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.12), rgba(249, 189, 6, 0.04));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9bd06;
            font-size: 14px;
        }

        .package-btn {
            display: block;
            width: 100%;
            padding: 18px;
            background: #140c3a;
            color: #fff;
            border: none;
            border-radius: 14px;
            font-weight: 600;
            font-size: 15px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .package-btn:hover {
            background: #f9bd06;
            color: #140c3a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(249, 189, 6, 0.3);
        }

        .package-card.featured .package-btn {
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            color: #140c3a;
        }

        .package-card.featured .package-btn:hover {
            background: #140c3a;
            color: #fff;
        }

        /* ========== WHAT'S INCLUDED SECTION ========== */
        .included-section {
            padding: 100px 0;
            background: #fff;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        @media (max-width: 992px) {
            .included-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 576px) {
            .included-grid { grid-template-columns: 1fr; }
        }

        .included-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 36px 28px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .included-card:hover {
            background: #fff;
            border-color: rgba(249, 189, 6, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(20, 12, 58, 0.08);
        }

        .included-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #140c3a, #1e1555);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .included-icon i {
            font-size: 1.4rem;
            color: #f9bd06;
        }

        .included-card h4 {
            color: #140c3a;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .included-card p {
            color: #64748b;
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #140c3a, #1a1050);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle at 70% 50%, rgba(249, 189, 6, 0.1), transparent 60%);
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .cta-content h2 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #f9bd06;
            color: #140c3a;
            padding: 18px 36px;
            border-radius: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: #fff;
            color: #140c3a;
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(249, 189, 6, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title { font-size: 2.5rem; }
            .service-pills { gap: 8px; }
        }

        @media (max-width: 768px) {
            .managed-hero { min-height: auto; padding: 60px 0; }
            .hero-title { font-size: 2rem; }
            .hero-visual { margin-top: 48px; }
            .dashboard-card { padding: 24px; }
            .section-title { font-size: 1.8rem; }
            .floating-support-icon { display: none; }
        }
